Update context/theme-provider.tsx

This commit is contained in:
kleap-admin 2026-01-18 14:06:52 +00:00
parent 319c446f19
commit b820ff836d
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>
);
}