Update context/theme-provider.tsx

This commit is contained in:
kleap-admin 2026-01-15 13:42:39 +00:00
parent 67b82066da
commit 7a9db83016
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
"use client";
import * as React from "react";
import * as NextThemes from "next-themes";
/**
* ThemeProvider wrapper for next-themes
* Uses namespace import to avoid Turbopack naming collision
* (Turbopack has issues when importing and re-exporting the same name)
*/
export function ThemeProvider({
children,
...props
}: NextThemes.ThemeProviderProps) {
return (
<NextThemes.ThemeProvider {...props}>{children}</NextThemes.ThemeProvider>
);
}