export default function BlogAuthors({ authors }) { return ( <> {authors.map(author => (
{author.name}
@{author.twitter}
))} ); }