Created Next Js Project

This commit is contained in:
brausjonas
2023-05-02 14:47:34 +02:00
parent a67e293cdc
commit 975b0fca96
22 changed files with 4637 additions and 0 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} />
}