Initial commit from Create Next App

This commit is contained in:
Kamran Ahmed
2021-08-01 13:08:35 +02:00
commit 5cf17a3e0f
15 changed files with 9627 additions and 0 deletions

7
pages/_app.tsx Normal file
View File

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