@vlsergey/react-bootstrap-pagetable
Version:
Complex solution to work with pageable data, including sorting, filtering, actions, changing displayed columns, etc.
7 lines (6 loc) • 348 B
JavaScript
import withActions from '../actions/withActions';
import ControlledBase from '../controlled';
import withFilterable from '../filterable/withFilterable';
import withSelectable from '../selectable/withSelectable';
import withSortable from '../sortable';
export default withActions(withSortable(withFilterable(withSelectable(ControlledBase))));