import {ROLE} from '../../actions/role'; let roles = JSON.parse(localStorage.getItem('roles')); const initialState = { role: roles }; export default function role(state = initialState, action) { switch(action.type){ case ROLE: return{ role: action.payload.role }; default: return state; } }