import React, {FC} from 'react'; // Routing import {Link} from 'react-router-dom'; import Routes from '../../constants/routes'; import {IEducationForm} from '.'; interface IProps { isDisabled: boolean; formData: IEducationForm; handleSubmit: (e: React.FormEvent) => void; handleChange: ( e: React.ChangeEvent< HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement >, ) => void; handleCheckboxesChange: (e: React.ChangeEvent) => void; } const AddEducationForm: FC = ({ handleSubmit, formData, handleChange, handleCheckboxesChange, isDisabled, }) => (

From Date

To Date

{' '} Current School

Go Back
); export default AddEducationForm;