export const getItems = () => {
return dispatch => {
fetch('http://localhost:1337/global')
.then(res => res.json())
.then(data => dispatch({ type: GET_ITEMS, payload: data }))
.catch(err => console.error(err))
}
}