Update context/theme-provider.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:05:00 +00:00
parent 55dec7aeef
commit 67a5654c67
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>;
}