diff --git a/packages/website/src/components/PropertyList.tsx b/packages/website/src/components/PropertyList.tsx index 4c47b8908..02305f571 100644 --- a/packages/website/src/components/PropertyList.tsx +++ b/packages/website/src/components/PropertyList.tsx @@ -1,22 +1,25 @@ import type { ApiPropertyItemJSON } from '@discordjs/api-extractor-utils'; -import { Stack } from '@mantine/core'; +import { Divider, Stack } from '@mantine/core'; +import { Fragment } from 'react'; import { CodeListing } from './CodeListing'; export function PropertyList({ data }: { data: ApiPropertyItemJSON[] }) { return ( {data.map((prop) => ( - + + + + ))} );