fenghuo/apps/web/components/providers.tsx

20 lines
467 B
TypeScript
Raw Normal View History

2025-02-18 15:35:03 +08:00
'use client';
import * as React from 'react';
import { ThemeProvider as NextThemesProvider } from 'next-themes';
2025-05-27 08:56:07 +08:00
import QueryProvider from '@/providers/query-provider';
2025-02-18 15:35:03 +08:00
export function Providers({ children }: { children: React.ReactNode }) {
return (
<NextThemesProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
enableColorScheme
>
2025-05-27 08:56:07 +08:00
<QueryProvider>{children}</QueryProvider>
</NextThemesProvider>
);
2025-02-18 15:35:03 +08:00
}