Update context/theme-provider.tsx

This commit is contained in:
kleap-admin 2026-01-15 13:03:03 +00:00
parent f41919e934
commit 11b44a6a12
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
"use client";
import * as React from "react";
import { ThemeProvider as NextThemesProvider } from "next-themes";
import { type ThemeProviderProps } from "next-themes";
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}