Skip to content

Instantly share code, notes, and snippets.

@singerxt
Created May 15, 2018 11:17
Show Gist options
  • Save singerxt/46feb2a2fd64d9988b8e6931dcb3ef24 to your computer and use it in GitHub Desktop.
Save singerxt/46feb2a2fd64d9988b8e6931dcb3ef24 to your computer and use it in GitHub Desktop.
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