Skip to content

Instantly share code, notes, and snippets.

View cevr's full-sized avatar
🏠
Working from home

Cristian Velasquez Ramos cevr

🏠
Working from home
View GitHub Profile
@cevr
cevr / api.js
Last active December 19, 2018 17:44
export function getObjectives() {
return dispatch => {
dispatch(isLoading());
axios
.get('url')
.then(res => {
dispatch(setObjectives(res.data))
dispatch(isNotLoading());
})
.catch(err => {