sick-buddy / components /theme-provider.tsx
whung99
Add About page, shadcn/ui components, and project documentation
1020fa8
raw
history blame contribute delete
292 Bytes
'use client'
import * as React from 'react'
import {
ThemeProvider as NextThemesProvider,
type ThemeProviderProps,
} from 'next-themes'
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
}