Files
sass-mohfarawati/components/theme-provider.tsx
T
2026-03-06 13:53:57 +01:00

8 lines
259 B
TypeScript

"use client";
import { ThemeProvider as NextThemesProvider, type ThemeProviderProps } from "next-themes";
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}