UNPKG

@mui/x-data-grid

Version:

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

8 lines 208 B
import * as React from 'react'; export const useFirstRender = callback => { const isFirstRender = React.useRef(true); if (isFirstRender.current) { isFirstRender.current = false; callback(); } };