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}; +}