Skip to content

Instantly share code, notes, and snippets.

@markodayan
Created June 24, 2020 08:59
Show Gist options
  • Save markodayan/3585bb48560e534663cf738835c87c9c to your computer and use it in GitHub Desktop.
Save markodayan/3585bb48560e534663cf738835c87c9c to your computer and use it in GitHub Desktop.
Next.js Custom App Component (In pages root dir to apply global styles)
import '../styles/global.css';
export default function App({ Component, pageProps }) {
return <Component {...pageProps} />;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment