blob: c5a0ea0157ee6a160f93b07edfbb4b20f430bd28 (
plain) (
blame)
1
2
3
4
5
6
|
import type { AppProps } from "next/app";
import "../styles/global.css";
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
|