(state, ownProps)
| 25 | } |
| 26 | |
| 27 | const mapStateToProps = (state, ownProps) => { |
| 28 | const { query } = ownProps; |
| 29 | |
| 30 | return { |
| 31 | result: selectEntitiesResult(state, query), |
| 32 | }; |
| 33 | }; |
| 34 | |
| 35 | export default connect(mapStateToProps)(EntitySelect); |
nothing calls this directly
no test coverage detected