10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
|
import type { AppProps } from "next/app";
|
||
|
|
||
|
import "../styles/main.scss";
|
||
|
|
||
|
const MyApp = ({ Component, pageProps }: AppProps) => {
|
||
|
return <Component {...pageProps} />;
|
||
|
};
|
||
|
|
||
|
export default MyApp;
|