1234567891011121314151617181920212223242526272829 |
- import * as types from "../actionTypes/actionTypes";
- const initialState = {
- message: ''
- }
- export default (state = initialState, action) => {
- switch (action.type) {
- case types.POST_REQUEST_CHECKIN: {
- return state;
- }
- case types.POST_REQUEST_SUCCESS_CHECKIN: {
- console.log('some', action.payload.message );
- return {
- ...state,
- message: action.payload.message
- };
- }
- case types.POST_REQUEST_ERROR_CHECKIN: {
- console.log('error');
- return state;
- }
- default:
- return state;
- }
- }
|