(state, ownProps)
| 82 | } |
| 83 | |
| 84 | const mapStateToProps = (state, ownProps) => ({ |
| 85 | metadata: selectMetadata(state), |
| 86 | session: selectSession(state), |
| 87 | }); |
| 88 | |
| 89 | export default compose(withRouter, connect(mapStateToProps))(Screen); |
nothing calls this directly
no test coverage detected