type Props = { user: { username: string description: string } href?: string } export const UserCard = ({ user, href }: Props) => { return (
{user.username}

{user.username}

{user.description}

) }