UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the MUI X Data Grid components.

9 lines (7 loc) 297 B
'use client'; import * as React from 'react'; import { isAutogeneratedRowNode } from "../rows/gridRowsUtils.js"; /** * Default implementation of the cell editable condition hook */ export const useIsCellEditable = () => React.useCallback(params => !isAutogeneratedRowNode(params.rowNode), []);