Initial commit from Create Next App

This commit is contained in:
Julian Tölle 2021-03-13 15:16:57 +01:00
commit 42ec5539dc
12 changed files with 2105 additions and 0 deletions

7
pages/_app.js Normal file
View file

@ -0,0 +1,7 @@
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp