import React from 'react'; import { Link } from 'react-router-dom'; import faker from 'faker/locale/en_US'; import { Badge, Media, Avatar, AvatarAddOn } from './../../../components'; import { randomAvatar } from './../../../utilities'; const ProfileHeader = () => ( { /* START Header */} , ]} />
{ faker.name.firstName() } { faker.name.lastName() } / Profile Edit
Premium Edit Your Name, Avatar, etc.
{ /* END Header */}
) export { ProfileHeader };