(dispatch)
| 18 | } |
| 19 | |
| 20 | const mapDispatchToProps = (dispatch) => { |
| 21 | return { |
| 22 | toggleComposer: () => { |
| 23 | dispatch(toggleComposer()) |
| 24 | }, |
| 25 | |
| 26 | clearSelectedKeys: () => { |
| 27 | dispatch(clearSelectedKeys()) |
| 28 | }, |
| 29 | |
| 30 | setOutput: (output) => { |
| 31 | dispatch(setOutput(output)) |
| 32 | }, |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | const OutputContainer = connect( |
| 37 | mapStateToProps, |
nothing calls this directly
no test coverage detected