Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- import { EffectCallback } from 'react';
- /**
- * Run's an effect on mount, and is cleaned up on unmount. Generally
- * useful for interop with non-react plugins or components
- *
- * ```ts
- * useMountEffect(() => {
- * const plugin = $.myPlugin(ref.current)
- *
- * return () => {
- * plugin.destroy()
- * }
- * })
- * ```
- * @param effect An effect to run on mount
- *
- * @category effects
- */
- declare function useMountEffect(effect: EffectCallback): void;
- export default useMountEffect;
|