import { Button, Col, DatePicker, Flex, Input, Row } from 'antd'; import React from 'react'; import { useDispatch } from 'react-redux'; import { toggleModal } from './scheduleSlice'; import { useTranslation } from 'react-i18next'; const ProjectTimelineModal = () => { const dispatch = useDispatch(); const { t } = useTranslation('schedule'); const handleSave = () => { dispatch(toggleModal()); }; return ( {t('startDate')} {t('endDate')} {t('hoursPerDay')} {t('totalHours')}
); }; export default ProjectTimelineModal;