"use client" import { Clock } from "lucide-react" export type RoundSummary = { id: string name: string sequence: number courseName: string | null dateLabel: string | null // already formatted, e.g. "20. sep 2026", or null if unscheduled } export type RoundGroupsStepListProps = { rounds: RoundSummary[] onManageGroups: (roundId: string) => void } export function RoundGroupsStepList({ rounds, onManageGroups }: RoundGroupsStepListProps) { if (rounds.length === 0) { return (

Ingen runder er lagt til ennå — legg til runder under «Runder og baner» først.

) } return ( // Connected list: one container, rows divided by hairlines — not separate // shadowed cards with gaps between them.
) }