Files
LexiChain/app/provider.tsx
2026-02-14 21:47:08 +01:00

12 lines
291 B
TypeScript

"use client";
import { ThemeProvider } from "next-themes";
import { ReactNode } from "react";
export function Providers({ children }: { children: ReactNode }) {
return (
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
{children}
</ThemeProvider>
);
}