www/pages/_app.tsx
2021-12-07 22:38:31 -05:00

6 lines
183 B
TypeScript

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