Files
discord.js/apps/website/src/components/documentation/Documentation.tsx
2023-11-13 18:03:23 +01:00

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