mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
work on styles
This commit is contained in:
@@ -1,24 +1,9 @@
|
||||
// import App from "next/app";
|
||||
import type { AppProps /*, AppContext */ } from 'next/app'
|
||||
import type { AppProps } 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
|
||||
|
||||
Reference in New Issue
Block a user