6 lines
183 B
TypeScript
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} />
|
||
|
}
|