www/pages/_app.tsx

6 lines
183 B
TypeScript
Raw Normal View History

2021-12-08 03:38:31 +00:00
import type { AppProps } from 'next/app'
import '../styles/global.css';
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {... pageProps} />
}