mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-11 09:03:29 +01:00
Closes https://github.com/discordjs/discord.js/issues/8920 Closes https://github.com/discordjs/discord.js/issues/8997
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import type { PropsWithChildren } from 'react';
|
|
|
|
/**
|
|
* Layout parent of documentation pages.
|
|
*/
|
|
export function Documentation({ children }: PropsWithChildren) {
|
|
return <div className="w-full flex-col space-y-4">{children}</div>;
|
|
}
|