UNPKG

react-component-managers

Version:
12 lines 307 B
import spyOnComponent from 'spy-on-component'; export default function spyOnMount(componentInstance) { var mounted = true; spyOnComponent(componentInstance, { componentWillUnmount: function componentWillUnmount() { mounted = false; } }); return function () { return mounted; }; }