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