From 67a5654c67f168e7062f25ab0da246c8573789e3 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:05:00 +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}; +}