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 (
{status} {company && at {company}}
{location && {location}}
View Profile