{GROUP_IDS.map((g) => (
))}
{list.length === 0 ? (
Für Gruppe {group} liegen noch keine Spiele im Feed vor.
) : (
{list.map((m) => {
const home = teamById(teams, m.homeTeamId);
const away = teamById(teams, m.awayTeamId);
const st = statusText(m);
const homeWin = m.homeScore != null && m.awayScore != null && m.homeScore > m.awayScore;
const awayWin = m.homeScore != null && m.awayScore != null && m.awayScore > m.homeScore;
return (
{st.live && }
{st.text}
{home?.name ?? "—"}
{away?.name ?? "—"}
{m.venue && 📍 {m.venue}}
{m.attendance != null && (
👥 {m.attendance.toLocaleString("de-DE")}
)}
);
})}
)}
{list.length > 0 && (
)}
);
}