| 6 | import { Button } from "./ui/button"; |
| 7 | |
| 8 | interface WorkflowNodeProps { |
| 9 | children: ReactNode; |
| 10 | showToolbar?: boolean; |
| 11 | onDelete?: () => void; |
| 12 | onSettings?: () => void; |
| 13 | name?: string; |
| 14 | description?: string; |
| 15 | }; |
| 16 | |
| 17 | export function WorkflowNode({ |
| 18 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected