www/pages/_app.tsx

7 lines
206 B
TypeScript

import type { AppProps } from 'next/app'
import 'normalize.css';
import '../styles/global.css';
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}