package.dist.components.collection.js Maven / Gradle / Ivy
import { ListCollection, TreeCollection } from '@zag-js/collection';
import { ref } from '@zag-js/core';
const createListCollection = (options) => ref(new ListCollection(options));
const createTreeCollection = (options) => ref(new TreeCollection(options));
export { createListCollection, createTreeCollection };
© 2015 - 2025 Weber Informatics LLC | Privacy Policy