Update context/theme-provider.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:25:11 +00:00
parent b9d02e6cec
commit b8e89e0350
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>;
}