UNPKG

@vlsergey/react-bootstrap-pagetable

Version:

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

7 lines (6 loc) 207 B
import React, { useContext } from 'react'; var ActionsContext = React.createContext(null); export default ActionsContext; export function useActionsContext() { return useContext(ActionsContext); }