WEB.BUILDING.GENIOUS / components /theme-provider.tsx
Humbl3m33's picture
Rename theme-provider.tsx to components/theme-provider.tsx
91c3f7c verified
Raw
History Blame Contribute Delete
284 Bytes
"use client"
import { ThemeProvider as NextThemesProvider } from "next-themes"
import type { ThemeProviderProps } from "next-themes"
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}