You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/src/components/ThemeProvider.tsx

8 lines
266 B
TypeScript

'use client'
import * as React from 'react'
import { ThemeProvider as NextThemesProvider } from 'next-themes'
export type ThemeProviderProps = Parameters<typeof NextThemesProvider>[0]
export const ThemeProvider = NextThemesProvider as React.FC<ThemeProviderProps>