import type { FC } from 'react' import * as React from 'react' import { useTranslation } from 'react-i18next' import Checkbox from '@/app/components/base/checkbox' import { cn } from '@/utils/classnames' type AddAnotherProps = { className?: string isChecked: boolean onCheck: () => void } const AddAnother: FC = ({ className, isChecked, onCheck, }) => { const { t } = useTranslation() return (
{t('segment.addAnother', { ns: 'datasetDocuments' })}
) } export default React.memo(AddAnother)