import React, { PropsWithChildren } from 'react'; import { InlineCode } from '~/components/base/code'; import { P } from '~/components/base/paragraph'; import { H3 } from '~/components/plugins/Headings'; import { APISectionPlatformTags } from '~/components/plugins/api/APISectionPlatformTags'; import { Cell, HeaderCell, Row, Table, TableHead } from '~/ui/components/Table'; type Props = PropsWithChildren<{ properties: PluginProperty[]; }>; export const ConfigPluginProperties = ({ children, properties }: Props) => ( <>
{children}
}