Skip to content

Instantly share code, notes, and snippets.

@kennethnwc
Created June 12, 2020 04:00
Show Gist options
  • Save kennethnwc/329069c2541719ea948321bc8bef4cd6 to your computer and use it in GitHub Desktop.
Save kennethnwc/329069c2541719ea948321bc8bef4cd6 to your computer and use it in GitHub Desktop.
_app.tsx
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