File size: 476 Bytes
19e25f3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { AppProps } from 'next/app';
import '@/styles/globals.css';
// !STARTERCONF This is for demo purposes, remove @/styles/colors.css import immediately
import '@/styles/colors.css';
/**
* !STARTERCONF info
* ? `Layout` component is called in every page using `np` snippets. If you have consistent layout across all page, you can add it here too
*/
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
export default MyApp;
|