UNPKG

@hooks/mount

Version:

React hook to execute callback on component mount

8 lines (7 loc) 228 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const react_1 = require("react"); function useMount(callback, hook = react_1.useEffect) { return hook(callback, []); } exports.default = useMount;