const initialState = { artists: [], } export default appReducer = (state = initialState, action) => { switch (action.type) { case FETCH_ARTISTE: return {...state, artists: action.payload}; default: return state; } }