import { actionBadgeStyle } from "@/lib/colors"; import { fmtDate, todayIso } from "@/lib/format"; import type { Database } from "@/lib/supabase/types"; type HistoryRow = Database["public"]["Tables"]["employee_history"]["Row"]; export function HistorieTab({ history }: { history: HistoryRow[] }) { const today = todayIso(); if (history.length === 0) { return
Keine Historieneinträge vorhanden.
; } return ({h.description}