import cx from 'classnames' import { useTranslation } from 'components/hooks/useTranslation' import { ParameterRow } from './ParameterRow' import type { ChildParameter } from './types' import styles from './ChildBodyParametersRows.module.scss' type Props = { open: boolean slug: string childParamsGroups: ChildParameter[] parentName: string parentType: string } export function ChildBodyParametersRows({ open, slug, parentName, parentType, childParamsGroups, }: Props) { const { t } = useTranslation(['parameter_table', 'products']) return (
{parentName}
| {`${t('name')}, ${t('type')}, ${t('description')}`} |
|---|