Skip to content

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);