pension-app/pages/_app.tsx
2022-07-02 14:00:47 +00:00

9 lines
188 B
TypeScript
Executable File

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