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}
{el.title}