general-eval-card / components /theme-provider.tsx
Avijit Ghosh
added all the new files
509e21e
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>
}