type Props = { repo: { repo: string description: string } href?: string } export const RepoCard = ({ repo, href }: Props) => { return (
{repo.repo}

{repo.repo}

{repo.description}

) }