pt.reducer.js 172 B

12345678
  1. export const ptReducer = (state = { data: {} }, action) => {
  2. switch (action.type) {
  3. case "SET_PT":
  4. return (state = action.payload);
  5. default:
  6. return state;
  7. }
  8. };