UNPKG

@vlsergey/react-bootstrap-pagetable

Version:

Complex solution to work with pageable data, including sorting, filtering, actions, changing displayed columns, etc.

10 lines (6 loc) 453 B
import withReactRouter, {PropsType as WithReactRouterProps} from '../reactRouter/withReactRouter'; import ControlledMixin, {PropsType as ControlledMixinPropsType} from './ControlledMixin'; type PlusWithReactRouterProps<T> = WithReactRouterProps<T, ControlledMixinPropsType<T>>; export type PropsType<T> = PlusWithReactRouterProps<T>; export default withReactRouter(ControlledMixin) as unknown as (<T>(props: PropsType<T>) => JSX.Element);