Created
January 5, 2020 01:15
-
-
Save danestves/f5d957091b23b2c7ed3aeeab836e24af to your computer and use it in GitHub Desktop.
Simple _app.js snippet for NextJS App
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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