import { useRef } from 'react'; /** * 模拟componentWillMount * @category Hooks */ export const useWillMount = (cb: Function) => { const willMount = useRef(true); if (willMount.current) { cb(); } willMount.current = false; };