import React, { Component } from "react" import { connect } from "react-redux" import { getData } from "../actions/index" export class Post extends Component { componentDidMount() { this.props.getData() } render() { let cand = this.props.candidate === undefined ? 'Not set' : this.props.candidate return (

Candidate: {cand}

) } } function mapStateToProps(state) { return { articles: state.remoteArticles.slice(0, 10), candidate: state.candidate } } export default connect( mapStateToProps, { getData } )(Post)