Prerequisites:
- Heroku CLI installed on your computer
- A project deployed to Heroku
| #!/usr/bin/env node | |
| const rabbit = { | |
| uuid: "229aaca7-51f3-43bd-a306-95e13d190bc4", | |
| fullname: "Ikki de Fênix", | |
| email: "ikki@gmail.com", | |
| network_email: "ikki@impulso.network", | |
| cpf: "111.111.111-11", | |
| gender: "male", | |
| languages: { | |
| spanish: "basic", |
| import React, { Component } from 'react'; | |
| import axios from 'axios'; | |
| // API | |
| import { onLoadUser } from './UserAPI'; | |
| class Example extends Component { | |
| signal = axios.CancelToken.source(); | |
| state = { |
Prerequisites: