Skip to content
  • Sponsor
  • Notifications You must be signed in to change notification settings
  • Fork 3.2k

Files

Latest commit

77d3486 Β· Aug 7, 2020

History

History
20 lines (14 loc) Β· 341 Bytes

useMount.md

File metadata and controls

20 lines (14 loc) Β· 341 Bytes

useMount

React lifecycle hook that calls a function after the component is mounted. Use useLifecycles if you need both a mount and unmount function.

Usage

import {useMount} from 'react-use';

const Demo = () => {
  useMount(() => alert('MOUNTED'));
  return null;
};

Reference

useMount(fn: () => void);