importActionTypefrom'../../actions/types'// khởi tạo một init stateconstinitialState={timeSheetProject:[],isLoading:false,}// bắt từng action typefunctionGetTimeSheetProject(state=initialState,action){switch(action.type){caseActionType.START_GET_TIME_SHEET_PROJECT:return{...state,isLoading:true,}caseActionType.GET_TIME_SHEET_PROJECT_SUCCESS:return{timeSheetProject:action.data,isLoading:false,}caseActionType.GET_TIME_SHEET_PROJECT_FAILED:return{...state,isLoading:false,}default:returnstate}}exportdefaultGetTimeSheetProject