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