blob: 8194b10a49918b0e3300a10a5953022490aed233 (
plain)
1
2
3
4
5
6
7
8
9
|
import { AppPropsWithLayout } from '@ts/types/app';
import '../styles/globals.scss';
function MyApp({ Component, pageProps }: AppPropsWithLayout) {
const getLayout = Component.getLayout ?? ((page) => page);
return getLayout(<Component {...pageProps} />);
}
export default MyApp;
|