mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
9 lines
241 B
TypeScript
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>;
|
|
}
|