| 12 | }; |
| 13 | |
| 14 | interface FlowSelectProps { |
| 15 | options: { value: string; label: string }[]; |
| 16 | } |
| 17 | |
| 18 | const FlowSelect: React.FC<FlowSelectProps> = ({ options }) => { |
| 19 | const [value, setValue] = useState<string>(''); |
nothing calls this directly
no outgoing calls
no test coverage detected