/* Teams index — constructors ranked by Season 6. */ function TeamsPage() { const FD = window.FD; const standings = FD.teamStandings(FD.currentSid).filter(t => t.roster.length); return (
Constructors' standings} />
{standings.map((t, i) => ( { e.currentTarget.style.transform = "translateY(-5px)"; e.currentTarget.style.borderColor = t.color; }} onMouseLeave={e => { e.currentTarget.style.transform = "none"; e.currentTarget.style.borderColor = "var(--line)"; }}>
P{i + 1}
{t.name}
{t.full}
{t.roster.map(d => ( {d.username} #{d.num} ))}
{t.wins} WINS · {t.podiums} PODIUMS PTS
))}
); } ReactDOM.createRoot(document.getElementById("root")).render();