UNPKG

@mui/x-internals

Version:

Utility functions for the MUI X packages (internal use only).

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