Created
May 15, 2018 11:17
-
-
Save singerxt/46feb2a2fd64d9988b8e6931dcb3ef24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from 'axios' | |
const baseURL = 'http://master.datasource.jazzy-hr.jzapp.io/api/v1/'; | |
const api = axios.create({ | |
baseURL, | |
timeout: 1500, | |
}) | |
export const getGnomes = (params = {}) => api.get('/gnomes', { | |
params, | |
}); | |
export const patchGnome = (id, payload = {}) => api.patch(`/gnomes/${id}`, payload); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment