Skip to content

Instantly share code, notes, and snippets.

@remotesynth
Created February 2, 2022 19:57
Show Gist options
  • Save remotesynth/3b90602fa73dee4ebb094504c3dd8d79 to your computer and use it in GitHub Desktop.
Save remotesynth/3b90602fa73dee4ebb094504c3dd8d79 to your computer and use it in GitHub Desktop.
Next.js _app.js
import { AppProps } from 'next/app'
import '../styles/index.css'
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment