import React from 'react'; import { Link } from 'react-router-dom'; import PropTypes from 'prop-types'; const ProfileItem = ({ profile: { user: { _id, name, avatar }, status, company, location, skills } }) => { return (

{name}

{status} {company && at {company}}

{location && {location}}

View Profile
); }; ProfileItem.propTypes = { profile: PropTypes.object.isRequired }; <<<<<<< HEAD export default ProfileItem; ======= export default ProfileItem; >>>>>>> cc38df43629d64ca77f694c971a13a026b3afcfb