Unmount
↔ (process) to remove UI from DOM API
aka Unmounted, Unmounting
References
componentWillUnmount()
↔ CC Lifecycle Method to trigger when CC Unmount from DOM APIRun [
useEffect()](useeffect) only [
Cleanup](cleanup-function) for [**_
Unmount_**](unmount)
↔ double Arrow Function to return Cleanup Function
useEffect(() => () => CLEANUP(),
[] )
destroyOnMount: true
↔ (default) reduxForm behaviour to dump form data on UnmountCleanup Function
↔ function call on Unmount, via return function fromuseEffect()