(dispatch)
| 8 | } |
| 9 | |
| 10 | const mapDispatchToProps = (dispatch) => { |
| 11 | return { |
| 12 | showComposer: (type) => { |
| 13 | dispatch(showComposerWithType(type)) |
| 14 | }, |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | const FloatingButtonContainer = connect( |
| 19 | mapStateToProps, |
nothing calls this directly
no test coverage detected