function RaceControl({ leaders, alerts, mats }) {
return (
Live leaderboard · Coastline 10K
LIVE
00:42:18.4
| POS |
BIB |
NAME |
WAVE |
SPLIT 3 |
GAP |
PACE |
{leaders.map(l => (
| {l.pos} |
{l.bib} |
{l.name} |
{l.wave} |
{l.split} |
{l.gap} |
{l.pace} |
))}
Timing mats
{mats.map(m => (
{m.name}
{m.id} · {m.km} km
{m.reads}
))}
);
}
window.RaceControl = RaceControl;