pageMainReducer.js 398 B

12345678910111213141516171819
  1. import * as T from "../../actions/actionTypes";
  2. const initialState = {
  3. btnText: '',
  4. };
  5. const pageMainReducer = (state = initialState, action) => {
  6. switch (action.type) {
  7. case T.CHANGE_BTN_TEXT:
  8. return {
  9. ...state,
  10. btnText: action.payload
  11. };
  12. default:
  13. return state;
  14. }
  15. };
  16. export default pageMainReducer;