@mui/x-data-grid
Version:
The community edition of the data grid component (MUI X).
13 lines (11 loc) • 449 B
JavaScript
import { buildWarning } from '../../utils/warning';
var deprecationWarning = buildWarning(['MUI: The hook useGridApi is deprecated and will be removed in the next major version.', 'Access the ref content with apiRef.current instead']);
/**
* @deprecated Use `apiRef.current` instead.
*/
export var useGridApi = function useGridApi(apiRef) {
if (process.env.NODE_ENV !== 'production') {
deprecationWarning();
}
return apiRef.current;
};