@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
14 lines (13 loc) • 437 B
JavaScript
import { createRootSelector } from "../../../utils/createSelector.js";
/**
* Get the list view state
* @category List View
* @ignore - Do not document
*/
export const gridListViewSelector = createRootSelector(state => state.props.listView ?? false);
/**
* Get the list column definition
* @category List View
* @ignore - Do not document
*/
export const gridListColumnSelector = createRootSelector(state => state.listViewColumn);