Skip to content
Snippets Groups Projects

"NextJS project setup"

Merged Kirby, Matt J (UG - Comp Sci & Elec Eng) requested to merge 14-nextjs-project-setup into main
All threads resolved!
13 files
+ 657
0
Compare changes
  • Side-by-side
  • Inline
Files
13
+ 6
0
import '@/styles/globals.css'
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
Loading