in client/src/reducers/roomsReducer.js [25:38]
export default (state = initialState, action) => {
switch (action.type) {
case NEW_MESSAGE: {
return {
...state,
[action.room]: roomReducer(state[action.room], action),
};
}
case LOGOUT:
return initialState;
default:
return state;
}
};