| 70 | ); |
| 71 | |
| 72 | export interface UnitFormRef { |
| 73 | getSearchParameters: () => { value: number | null }; |
| 74 | setValue: (value: number | null, unit?: string) => void; |
| 75 | clear: () => void; |
| 76 | } |
| 77 | |
| 78 | const UnitForm = forwardRef<UnitFormRef, UnitFormProps>( |
| 79 | ({ valueType }, ref) => { |
nothing calls this directly
no outgoing calls
no test coverage detected