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

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

zhanghaozhe committed
20
export default reducer