next-app-boilerplate/pages/_app.tsx

10 lines
195 B
TypeScript
Raw Normal View History

2022-02-12 23:07:11 +01:00
import type { AppProps } from "next/app";
import "../styles/main.scss";
const MyApp = ({ Component, pageProps }: AppProps) => {
return <Component {...pageProps} />;
};
export default MyApp;