()
| 22 | const [toDo, setToDo] = useState(''); |
| 23 | |
| 24 | const maybeAddToDo = () => { |
| 25 | if (toDo.length > 0) { |
| 26 | dispatch(reduxAddToDo(toDo)); |
| 27 | } |
| 28 | }; |
| 29 | |
| 30 | // NOTE: Check how app is done with hooks |
| 31 | // return <AppWithReactHooks></AppWithReactHooks>; |
nothing calls this directly
no outgoing calls
no test coverage detected