Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. login() {
  2. console.log("Hello. It's Me")
  3. axios.post('https://crossorigin.me/http://requestb.in/w21igbw2', {
  4. firstName: 'Fred',
  5. lastName: 'Flintstone'
  6. })
  7. .then(function (response) {
  8. console.log(response);
  9. //this.setState({ showModal: false });
  10. })
  11. .catch(function (error) {
  12. console.log(error);
  13. });
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement