(state, ownProps)
| 89 | } |
| 90 | |
| 91 | const mapStateToProps = (state, ownProps) => { |
| 92 | const { query } = ownProps; |
| 93 | return { |
| 94 | result: selectEntitiesResult(state, query), |
| 95 | }; |
| 96 | }; |
| 97 | |
| 98 | export default connect(mapStateToProps)(EntityActionBar); |
nothing calls this directly
no test coverage detected