Posted on

djkjhkf

const todosReducer = (state = [], action) => {
  switch (action.type) {
    case 'ADD_TODO':
      return [...state, { text: action.payload.text }];
    default:
      return state;
  }
};