UNPKG

@mui/x-internals

Version:

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

5 lines 182 B
import * as React from 'react'; /** * Runs an effect once, when `condition` is true. */ export declare const useRunOnce: (condition: boolean, effect: React.EffectCallback) => void;