webdev-service / components /theme-provider.tsx
underrate's picture
Initial commit
34ed5b1 verified
Raw
History Blame Contribute Delete
306 Bytes
"use client"
import * as React from "react"
import { ThemeProvider as NextThemesProvider } from "next-themes"
export function ThemeProvider({
children,
...props
}: React.ComponentProps<typeof NextThemesProvider>) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}