UNPKG

@mui/x-internals

Version:

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

10 lines (9 loc) 221 B
'use client'; import * as React from 'react'; export function useFirstRender(callback) { const isFirstRender = React.useRef(true); if (isFirstRender.current) { isFirstRender.current = false; callback(); } }