Old version ```js import { useRef, } from 'react'; const useConstructor = (constructor) => { const init = useRef(false); if (!init.current) { constructor(); init.current = true; } }; export {useConstructor}; ```