Files
discord.js/apps/website/src/app/providers.tsx
2023-03-23 22:17:41 +01:00

9 lines
241 B
TypeScript

'use client';
import { ThemeProvider } from 'next-themes';
import type { PropsWithChildren } from 'react';
export function Providers({ children }: PropsWithChildren) {
return <ThemeProvider attribute="class">{children}</ThemeProvider>;
}