Created
June 12, 2020 04:00
-
-
Save kennethnwc/329069c2541719ea948321bc8bef4cd6 to your computer and use it in GitHub Desktop.
_app.tsx
This file contains 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
import { AppProps } from "next/app"; | |
import "./_app.module.scss"; | |
export default ({ Component, pageProps }: AppProps) => { | |
return <Component {...pageProps} />; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment