Files
playbook/ui-ux-pro-max/gallery/app/providers.tsx
T
2026-08-12 08:38:22 +08:00

12 lines
263 B
TypeScript

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