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