(state, ownProps)
| 101 | } |
| 102 | } |
| 103 | const mapStateToProps = (state, ownProps) => { |
| 104 | const { query } = ownProps; |
| 105 | const result = selectEntitiesResult(state, query); |
| 106 | return { query, result }; |
| 107 | }; |
| 108 | |
| 109 | export default compose( |
| 110 | withRouter, |
nothing calls this directly
no test coverage detected