import {FETCH_ARTISTE} from '../constants'; const initialState = { artists: [], } export default function appReducer(state = initialState, action){ switch (action.type) { case FETCH_ARTISTE: return {...state, artists: action.payload}; default: return state; } }