mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 08:33:30 +01:00
9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import type { PropsWithChildren } from 'react';
|
|
|
|
/**
|
|
* Layout parent of documentation pages.
|
|
*/
|
|
export function Documentation({ children }: PropsWithChildren) {
|
|
return <div className="w-full flex flex-col gap-4">{children}</div>;
|
|
}
|