(value: string)
| 7 | const [duration, setDuration] = useState<Duration>(defaultValue as Duration) |
| 8 | |
| 9 | function onChange(value: string) { |
| 10 | setDuration(value as Duration) |
| 11 | } |
| 12 | |
| 13 | return { |
| 14 | duration, |
nothing calls this directly
no outgoing calls
no test coverage detected