Update context/theme-provider.tsx
This commit is contained in:
parent
67b82066da
commit
7a9db83016
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue