'use client' import type { RoadmapData } from './types' import { BUCKET_LABELS, DOMAIN_LABELS } from './types' interface RoadmapTabProps { roadmap: RoadmapData | null } export function RoadmapTab({ roadmap }: RoadmapTabProps) { if (!roadmap) { return (
Keine Eintraege
) : ( items.map(item => ({item.title}
{item.days_overdue}d ueberfaellig
)} {item.owner && ({item.owner}
)}