Files
yourwillyourwish/components/Providers.tsx
2026-02-06 21:44:04 -06:00

17 lines
301 B
TypeScript

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