Add Typescript (code in JS is also allowed)

This commit is contained in:
Lucàs
2023-03-05 14:43:35 +01:00
parent c42237ffcd
commit d3e9b45273
20 changed files with 3734 additions and 8889 deletions
+6
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} />
}