Files
sign/pages/_app.tsx

7 lines
179 B
TypeScript
Raw Normal View History

2022-11-14 23:12:51 +01:00
import '../styles/globals.css'
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}