import React from 'react'; import PropTypes from 'prop-types'; const ProfileTop = ({ profile: { status, company, location, website, social, user: { name, avatar } } }) => { return (
); }; ProfileTop.propTypes = { profile: PropTypes.object.isRequired }; export default ProfileTop;