lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
8 lines • 432 B
JavaScript
import store, { add, remove } from "@lincode/reactivity";
const [setTimelineExpandedUUIDs, getTimelineExpandedUUIDs] = store([
new Set()
]);
export { getTimelineExpandedUUIDs };
export const addTimelineExpandedUUID = add(setTimelineExpandedUUIDs, getTimelineExpandedUUIDs);
export const deleteTimelineExpandedUUID = remove(setTimelineExpandedUUIDs, getTimelineExpandedUUIDs);
//# sourceMappingURL=useTimelineExpandedUUIDs.js.map