Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. axios.get(`http://divulgacandcontas.tse.jus.br/divulga/rest/v1/candidatura/listar/2016/58238/2/${candidateCode}/candidatos`)
  2.   .then(response => {
  3.     this.setState({
  4.       data: response.data.candidatos
  5.     }, () => {
  6.       this.setState({
  7.         isFetching: false
  8.       })
  9.     })
  10.   })
  11.   .catch(error => {
  12.     console.log(error);
  13.   })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement