mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 08:55:18 +00:00
24 lines
494 B
JavaScript
24 lines
494 B
JavaScript
import { useEffect } 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
|
|
*/
|
|
|
|
function useMountEffect(effect) {
|
|
return useEffect(effect, []);
|
|
}
|
|
|
|
export default useMountEffect; |