mirror of
https://github.com/fccview/cronmaster.git
synced 2026-03-23 00:02:43 +08:00
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
'use client'
|
|
|
|
import { ThemeProvider as NextThemesProvider } from 'next-themes';
|
|
import { type ThemeProviderProps } from 'next-themes/dist/types';
|
|
|
|
export const ThemeProvider = ({ children, ...props }: ThemeProviderProps) => {
|
|
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
|
|
}
|
|
|
|
|
|
|
|
|