import OLButton from '@/features/ui/components/ol/ol-button' import OLModal, { OLModalBody, OLModalFooter, OLModalHeader, } from '@/features/ui/components/ol/ol-modal' import Notification from '@/shared/components/notification' import { Modal } from 'react-bootstrap' import { useTranslation } from 'react-i18next' type LeaveProjectModalProps = { showModal: boolean handleCloseModal: () => void handleLeaveAction: () => void } function LeaveProjectModal({ showModal, handleCloseModal, handleLeaveAction, }: LeaveProjectModalProps) { const { t } = useTranslation() return ( {t('leave_project')}

{t('about_to_leave_project')}

{t('cancel')} handleLeaveAction()}> {t('confirm')}
) } export default LeaveProjectModal