You could import the types from nextjs
.
import { AppProps } from 'next/app';
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
CLICK HERE to find out more related problems solutions.
You could import the types from nextjs
.
import { AppProps } from 'next/app';
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
CLICK HERE to find out more related problems solutions.