UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

10 lines (7 loc) 295 B
import { createContext, useContext } from 'react'; import { type Identifier } from '../types'; export const DataTableSelectedIdsContext = createContext< Identifier[] | undefined >(undefined); export const useDataTableSelectedIdsContext = () => useContext(DataTableSelectedIdsContext);