Created the Home page

This commit is contained in:
Mathias Wagner 2022-09-12 00:59:10 +02:00
parent 82faa06464
commit c0b0c98b6f
2 changed files with 6 additions and 0 deletions

5
src/pages/Home/Home.jsx Normal file
View File

@ -0,0 +1,5 @@
const Home = () => {
return (<h2>Startseite</h2>)
}
export default Home;

1
src/pages/Home/index.js Normal file
View File

@ -0,0 +1 @@
export {default} from './Home';