function AlertFeed({ alerts }) { return (

Race control feed

LIVE
{alerts.map((a, i) => (
{a.msg}
{a.detail}
{a.time}
))}
); } window.AlertFeed = AlertFeed;