import { useTranslation } from 'components/hooks/useTranslation' import { ParameterRow } from './ParameterRow' import type { ChildParamsGroup } from './types' type Props = { slug: string childParamsGroups: ChildParamsGroup[] } export function ChildBodyParametersRows({ slug, childParamsGroups }: Props) { const { t } = useTranslation('products') return (
{childParamGroup.parentName}
{childParamGroup.parentType}
| {`${t('rest.reference.name')}, ${t('rest.reference.type')}, ${t( 'rest.reference.description' )}`} |
|---|