(e)
| 1873 | const [disabled, setDisabled] = React.useState(false); |
| 1874 | const [value, setValue] = React.useState('one'); |
| 1875 | function handleChange(e) { |
| 1876 | setDisabled(true); |
| 1877 | // Pretend this is in a setTimeout or something |
| 1878 | thunk = () => { |
| 1879 | setDisabled(false); |
| 1880 | setValue(e.target.value); |
| 1881 | }; |
| 1882 | } |
| 1883 | return ( |
| 1884 | <> |
| 1885 | <input |
nothing calls this directly
no test coverage detected