/** * Reducer for received websocket messages * * @param {object} state * @param {object} action * @return {object} newState */ export const receiveReducer = (state = {}, action) => { switch (action.type) { default: return state; } };