hello.js 270 B

12345678910111213
  1. import * as types from "./../constants/ActionTypes";
  2. const hello = (state = "User", action) => {
  3. switch (action.type) {
  4. case types.NEW_NAME:
  5. state = action.name;
  6. return state;
  7. default:
  8. return state;
  9. }
  10. };
  11. export default hello;