Created
March 22, 2019 01:08
-
-
Save phd20/59fa23b689d292255a75d46ea212b09a to your computer and use it in GitHub Desktop.
Working version of container that returns array of objects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { connect } from "react-redux"; | |
import Dashboard from "./dashboard"; | |
import { ApplicationState } from "../../store"; | |
const mapStateToProps = (state: ApplicationState) => { | |
return { | |
user: state.oidc.user, | |
sessions: Object.values(state.sessions.sessions), | |
}; | |
}; | |
export default connect(mapStateToProps)(Dashboard); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment