function BibCard({ bib, name, event, projected, status }) { return (
LIVE {event}
BIB {bib}
{name}
Projected finish
{projected}
Status
{status}
); } window.BibCard = BibCard;