import React, {FC} from 'react'; // Routing import {Link} from 'react-router-dom'; import {FontAwesomeIcon} from '@fortawesome/react-fontawesome'; import { faFacebook, faInstagram, faLinkedin, faTwitter, faYoutube, } from '@fortawesome/free-brands-svg-icons'; import {IProfileForm} from '.'; import Routes from '../../constants/routes'; import Statuses from '../../constants/statuses'; interface IProps { showLinks: boolean; isDisabled: boolean; formData: IProfileForm; handleSubmit: (e: React.FormEvent) => void; handleChange: ( e: React.ChangeEvent< HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement >, ) => void; toggleSocialLinks: () => void; } const EditProfileForm: FC = ({ showLinks, handleSubmit, formData, handleChange, isDisabled, toggleSocialLinks, }) => (
Give us an idea of where you are at in your career
Could be your own company or one you work for
Could be your own or a company website
City & state suggested (eg. Boston, MA)
Please use comma separated values (eg. HTML,CSS,JavaScript,PHP)
If you want your latest repos and a Github link, include your username
Tell us a little about yourself
Optional
{showLinks && ( <>
)} Go Back
); export default EditProfileForm;