From 11b44a6a12e5bfc3f534272e0d91abb0bd8f0989 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:03:03 +0000 Subject: [PATCH] Update context/theme-provider.tsx --- context/theme-provider.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 context/theme-provider.tsx diff --git a/context/theme-provider.tsx b/context/theme-provider.tsx new file mode 100644 index 0000000..984415a --- /dev/null +++ b/context/theme-provider.tsx @@ -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 {children}; +}