()
| 16 | const [unmountOnClose, setUnmountOnClose] = useState(true); |
| 17 | |
| 18 | const toggle = () => setModal(!modal); |
| 19 | const changeUnmountOnClose = (e) => { |
| 20 | let { value } = e.target; |
| 21 | setUnmountOnClose(JSON.parse(value)); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…