'use client' import React from 'react' import { useTranslation } from 'react-i18next' import s from './index.module.css' import cn from '@/utils/classnames' import Modal from '@/app/components/base/modal' import Button from '@/app/components/base/button' type IProps = { show: boolean onConfirm: () => void onHide: () => void } const StopEmbeddingModal = ({ show = false, onConfirm, onHide, }: IProps) => { const { t } = useTranslation() const submit = () => { onConfirm() onHide() } return (
{t('datasetCreation.stepThree.modelTitle')}
{t('datasetCreation.stepThree.modelContent')}
) } export default StopEmbeddingModal