mirror of
https://github.com/theoludwig/react-component-form.git
synced 2024-07-17 07:30:13 +02:00
15 lines
341 B
TypeScript
15 lines
341 B
TypeScript
import type { AppProps } from 'next/app'
|
|
import { ThemeProvider } from 'next-themes'
|
|
|
|
import '../styles/globals.css'
|
|
|
|
const MyApp = ({ Component, pageProps }: AppProps): JSX.Element => {
|
|
return (
|
|
<ThemeProvider attribute='class' defaultTheme='light'>
|
|
<Component {...pageProps} />
|
|
</ThemeProvider>
|
|
)
|
|
}
|
|
|
|
export default MyApp
|