NextJSNetflix/pages/_app.tsx

7 lines
178 B
TypeScript
Raw Permalink Normal View History

2023-06-03 09:45:49 +00:00
import '@/styles/globals.css'
import type { AppProps } from 'next/app'
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />
}