mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 17:13:31 +01:00
9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
'use client';
|
|
|
|
import { Section as DJSSection, type SectionOptions } from '@discordjs/ui';
|
|
import type { PropsWithChildren } from 'react';
|
|
|
|
export function Section(options: PropsWithChildren<SectionOptions>) {
|
|
return <DJSSection {...options} />;
|
|
}
|