Files
albert.lol-nextjs/src/app/components/ThemeProvider.tsx
T
2024-10-29 09:15:26 +01:00

10 lines
331 B
TypeScript

"use client";
import * as React from "react";
import { ThemeProvider as NextThemesProvider } from "next-themes";
import type { ThemeProviderProps } from "next-themes/dist/types";
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
}