Skip to content

Instantly share code, notes, and snippets.

@Kotauror
Created October 19, 2018 08:24
Show Gist options
  • Save Kotauror/a95fcbef1bb6a701394cc23ffe178817 to your computer and use it in GitHub Desktop.
Save Kotauror/a95fcbef1bb6a701394cc23ffe178817 to your computer and use it in GitHub Desktop.
api_mock
import axios from 'axios';
class Api {
static getContacts() {
return new Promise(function(resolve, reject) {
resolve([{
name: "Justyna",
telephone: "111111",
id: 1
},
{
name: "kosia",
telephone: "222",
id: 2
}
])
})
}
static addContact(name, telephone) {
return new Promise(function(resolve, reject) {
resolve({
name: "Kosinka",
telephone: "5555",
id: 3
})
})
}
}
export default Api
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment