limo-platform/client/limo-mobile-h5/components/theme-provider.tsx
2025-07-11 15:41:48 +08:00

11 lines
292 B
TypeScript

'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>
}