UNPKG

framer-motion

Version:

A simple and powerful React animation library

8 lines (5 loc) 192 B
import { useEffect } from 'react'; function useUnmountEffect(callback) { return useEffect(function () { return function () { return callback(); }; }, []); } export { useUnmountEffect };