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