(state, ownProps)
| 205 | }); |
| 206 | |
| 207 | const selectMapStateToProps = (state, ownProps) => { |
| 208 | const { query } = ownProps; |
| 209 | return { |
| 210 | query, |
| 211 | result: selectCollectionsResult(state, query), |
| 212 | }; |
| 213 | }; |
| 214 | |
| 215 | class Collection { |
| 216 | static Label = CollectionLabel; |
nothing calls this directly
no test coverage detected