Spaces:
Runtime error
Runtime error
File size: 301 Bytes
ceb943f | 1 2 3 4 5 6 7 8 9 10 11 12 | "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>
}
|