zkt24/z1/frontend/pages/_app.tsx

7 lines
176 B
TypeScript
Raw Permalink Normal View History

2024-04-10 09:23:23 +00:00
import '../styles/globals.css'
import { AppProps } from 'next/app'
export default function MyApp({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}