Files
discord.js/apps/guide/src/components/Section.tsx
2023-04-15 04:43:23 +02:00

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} />;
}