Initial commit from Create Next App

This commit is contained in:
Arjun Patel
2022-02-13 12:07:47 -08:00
commit 2513b29849
15 changed files with 2023 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import '../styles/globals.css'
import type { AppProps } from 'next/app'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp