Files
Beacon/src/components/theme-provider.tsx
T
Uklonil 3aeaed0af2
CI / quality (push) Waiting to run
UPD: initial architecture
2026-07-27 10:23:50 +02:00

7 lines
254 B
TypeScript

"use client";
import { ThemeProvider as NextThemesProvider } from "next-themes";
import type { ComponentProps } from "react";
export function ThemeProvider(props: ComponentProps<typeof NextThemesProvider>) {
return <NextThemesProvider {...props} />;
}