componentDidMount() {
    axios
            .get(`/api/polls/${this.props.match.params.id}`)
            .then((res) => {
  this.setState({ poll: res.data, fetched: true });