import type { ChecklistItem } from "@/types/board"; interface ChecklistBarProps { checklist: ChecklistItem[]; } export function ChecklistBar({ checklist }: ChecklistBarProps) { if (checklist.length === 0) return null; return (