Files
pdfer/pages/_app.tsx
Thomas Ruoff fb91b1cbc8 work on styles
2021-02-25 00:35:03 +01:00

10 lines
187 B
TypeScript

import type { AppProps } from 'next/app'
import '../styles/index.css'
function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}
export default MyApp