index.js 604 Bytes
Newer Older
baiguangyao committed
1
import { combineReducers } from 'redux';
zhanghaozhe committed
2
import myCourses from '@/components/study/myCourses/reducers'
xuzhenghua committed
3
import courseInfo from '@/components/detail/reducers'
4
import user from './userReducer'
FE committed
5
import country from '@/components/country/countryRedux'
zhanghaozhe committed
6
import intelligentRecommend from "@components/intelligent-recommend/store"
zhanghaozhe committed
7
import anniversary2020Question from '@components/activity/2020-717/question/store/reducer' //2020周年庆活动答题页
baiguangyao committed
8 9 10


const reducer = combineReducers({
zhanghaozhe committed
11 12 13 14 15 16
  myCourses,
  courseInfo,
  user,
  country,
  intelligentRecommend,
  anniversary2020Question,
baiguangyao committed
17 18
});

19
export default reducer;