// Use require.context to require reducers automatically// Ref: https://webpack.github.io/docs/context.htmlconstcontext=require.context('./',false,/\.js$/);constkeys=context.keys().filter(item=>item!=='./index.js');constmodels=[];for(leti=0;i<keys.length;i+=1){models.push(context(keys[i]));}exportdefaultmodels;