(state, ownProps)
| 84 | } |
| 85 | |
| 86 | const mapStateToProps = (state, ownProps) => { |
| 87 | const { query } = ownProps; |
| 88 | const result = selectNotificationsResult(state, query); |
| 89 | return { query, result }; |
| 90 | }; |
| 91 | |
| 92 | export default compose( |
| 93 | withRouter, |
nothing calls this directly
no test coverage detected