| 9 | import type { ParentTask } from '../../lib/types'; |
| 10 | |
| 11 | interface ParentTaskCardProps { |
| 12 | parentTask: ParentTask; |
| 13 | variant?: 'default' | 'compact' | 'detailed'; |
| 14 | onClick?: () => void; |
| 15 | className?: string; |
| 16 | showOverview?: boolean; // For detailed variant |
| 17 | } |
| 18 | |
| 19 | export function ParentTaskCard({ |
| 20 | parentTask, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…