import React from 'react' import Avatar from 'src/features/Profiles/Components/Avatar/Avatar'; import dayjs from 'dayjs' interface Props { name: string; avatar: string; date: string } export default function Header(props: Props) { return (

{props.name}

{dayjs(props.date).format('MMMM DD')}

3h ago

) }