import React from 'react' import './ProfileCard.css' const ProfileCard = props => { return (
profile {props.username}
) } export default ProfileCard