(state, ownProps)
| 66 | } |
| 67 | |
| 68 | const mapStateToProps = (state, ownProps) => { |
| 69 | const { query } = ownProps; |
| 70 | return { query, result: selectMappingsResult(state, query) }; |
| 71 | }; |
| 72 | |
| 73 | export default compose( |
| 74 | withRouter, |
nothing calls this directly
no test coverage detected