import { combineReducers } from 'redux'
import troubleList from './trouble'
import storeInfo from './store'
import scanBarCode from './scanBarCode'
import otherQuestion from './otherQuestion'
import userInfo from './user'
import refreshImg from './refreshImg'
import headerInfo from './initHeader'
import reportDamageList from './reportDamge'
import errMsg from './error'

export default combineReducers({
    troubleList,
    storeInfo,
    scanBarCode,
    otherQuestion,
    userInfo,
    refreshImg,
    headerInfo,
    reportDamageList,
    errMsg
})