www/pages/_app.tsx
2021-12-08 02:53:04 -05:00

7 lines
207 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} />
}