export default()

in client/src/reducers/messagesReducer.js [20:35]


export default (state = initialState, action) => {
  switch (action.type) {
    case NEW_MESSAGE:
      return [
        ...state,
        {
          author: action.username,
          time: action.time,
          text: action.message,
          id: action.id,
        },
      ];
    default:
      return state;
  }
};