blob: 6f08a02120ad047fa042048889133e47e65dcff4 (
plain)
| 1
2
3
4
5
6
7
8
 | import '../styles/globals.scss';
import type { AppProps } from 'next/app';
function MyApp({ Component, pageProps }: AppProps) {
  return <Component {...pageProps} />;
}
export default MyApp;
 |