(state, ownProps)
| 48 | }; |
| 49 | |
| 50 | const mapStateToProps = (state, ownProps) => { |
| 51 | const { collectionId } = ownProps; |
| 52 | |
| 53 | return { |
| 54 | collection: selectCollection(state, collectionId), |
| 55 | }; |
| 56 | }; |
| 57 | |
| 58 | export default compose( |
| 59 | connect(mapStateToProps), |
nothing calls this directly
no test coverage detected