Update context/theme-provider.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:19:06 +00:00
parent 4a06a7b9ff
commit 7c1dfbd698
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>;
}