()
| 23 | const action = type => store.dispatch({type}) |
| 24 | |
| 25 | function render() { |
| 26 | ReactDOM.render( |
| 27 | <Counter |
| 28 | value={store.getState()} |
| 29 | onIncrement={() => action('INCREMENT')} |
| 30 | onDecrement={() => action('DECREMENT')} |
| 31 | onIncrementIfOdd={() => action('INCREMENT_IF_ODD')} |
| 32 | onIncrementAsync={() => action('INCREMENT_ASYNC')} />, |
no outgoing calls
no test coverage detected
searching dependent graphs…