UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

11 lines 343 B
import { useLayoutEffect } from "preact/hooks"; import { decreaseEditorCount, increaseEditorCount } from "../../states/useEditorCount"; export default () => { useLayoutEffect(() => { increaseEditorCount(); return () => { decreaseEditorCount(); }; }, []); }; //# sourceMappingURL=useInitEditor.js.map