(state, ownProps)
| 53 | } |
| 54 | |
| 55 | const mapStateToProps = (state, ownProps) => { |
| 56 | const { entitySetId } = ownProps.params; |
| 57 | const entitySet = selectEntitySet(state, entitySetId); |
| 58 | return { entitySet, entitySetId }; |
| 59 | }; |
| 60 | |
| 61 | export default compose( |
| 62 | withRouter, |
nothing calls this directly
no test coverage detected