Files
pdfer/pages/_app.tsx
2021-02-25 00:34:45 +01:00

25 lines
780 B
TypeScript

// import App from "next/app";
import type { AppProps /*, AppContext */ } from 'next/app'
import '../styles/index.css'
import '../styles/App.css'
import '../styles/LetterOptions.css'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
// Only uncomment this method if you have blocking data requirements for
// every single page in your application. This disables the ability to
// perform automatic static optimization, causing every page in your app to
// be server-side rendered.
//
// MyApp.getInitialProps = async (appContext: AppContext) => {
// // calls page's `getInitialProps` and fills `appProps.pageProps`
// const appProps = await App.getInitialProps(appContext);
// return { ...appProps }
// }
export default MyApp