created next js project

This commit is contained in:
Timur Ercan
2022-11-14 23:12:51 +01:00
parent d8f850a69f
commit 15b8c8bf7d
14 changed files with 5194 additions and 0 deletions

6
pages/_app.tsx Normal file
View File

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