khronoz's picture
Initial Commit
0702eb8
raw
history blame
432 Bytes
"use client";
import { NextUIProvider } from '@nextui-org/react'
import { ThemeProvider as NextThemesProvider } from "next-themes";
export function Providers({ children }: { children: React.ReactNode }) {
return (
<NextUIProvider>
<NextThemesProvider attribute="class" defaultTheme="light" enableSystem={false}>
{children}
</NextThemesProvider>
</NextUIProvider>
)
}