9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
|
import "../styles/globals.css";
|
||
|
import type { AppProps } from "next/app";
|
||
|
|
||
|
function MyApp({ Component, pageProps }: AppProps) {
|
||
|
return <Component {...pageProps} />;
|
||
|
}
|
||
|
|
||
|
export default MyApp;
|