Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 209 Bytes

File metadata and controls

11 lines (8 loc) · 209 Bytes

useEffectOnce

Same as React's useEffect, except that it will only run on the the initial render (even in React >=v18).

Example

useEffectOnce(() => {
  console.log('doot doot doot!')
});