import React, { Component } from "react" import { connect } from "react-redux" import { getHillaryData } from "../actions/index" import { getTrumpData } from "../actions/index" export class Post extends Component { componentWillUpdate(nextProps, nextState) { if (nextProps.candidate !== this.props.candidate) { if (nextProps.candidate === 'Hillary Clinton') { this.props.getHillaryData() } else if (nextProps.candidate === 'Donald Trump'){ this.props.getTrumpData() } } } render() { let cand = this.props.candidate === undefined ? 'Not set' : this.props.candidate return (
@{cand}
{el.created_at}
{el.text}