UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

12 lines (9 loc) 217 B
import { useEffect } from 'react' export const useLifecycle = ({ onMount, onUnmount }) => { return useEffect(() => { onMount && onMount() return () => { onUnmount && onUnmount() } }, [true]) }