UNPKG

admin-on-rest-fr05t1k

Version:

A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI

11 lines (9 loc) 258 B
import { combineReducers } from 'redux'; import ids from './ids'; import params from './params'; import total from './total'; export default resource => combineReducers({ ids: ids(resource), params: params(resource), total: total(resource), });