feat: create home page and add it to routes config

This commit is contained in:
2023-06-07 21:55:32 +01:00
parent 260d853f30
commit 85706a5819
2 changed files with 9 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
import { memo } from 'react';
function Home(props) {
return <div>Heeeeelloooooo!</div>;
}
export default memo(Home);