| 132 | } |
| 133 | |
| 134 | interface FlowNodeProps extends NodeProps { |
| 135 | data: FlowNodeData & { |
| 136 | onOpenRef?: (ref: WikiRef) => void; |
| 137 | isLatestActive?: boolean; |
| 138 | }; |
| 139 | } |
| 140 | |
| 141 | export function FlowNode({ data }: FlowNodeProps) { |
| 142 | const t = useT(); |
nothing calls this directly
no outgoing calls
no test coverage detected