Guest User

Untitled

a guest
May 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. fetch(config.apiUrl + '/api/user',
  2. {
  3. headers: authHeader(),
  4. method: "GET",
  5. })
  6. .then(function(res){ return res.json(); })
  7. .then(function(data) {
  8. this.setState({ id:data.id })
  9. })
Add Comment
Please, Sign In to add comment