Skip to content

Instantly share code, notes, and snippets.

@danestves
Created January 5, 2020 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danestves/f5d957091b23b2c7ed3aeeab836e24af to your computer and use it in GitHub Desktop.
Save danestves/f5d957091b23b2c7ed3aeeab836e24af to your computer and use it in GitHub Desktop.
Simple _app.js snippet for NextJS App
// Styles
import "../styles/styles.scss"
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment