tree.js 216 B

1234567
  1. import { tree } from 'd3-hierarchy';
  2. import { hierarchyFunction } from './cluster';
  3. export const Tree = (options) => {
  4. return hierarchyFunction(tree)(options);
  5. };
  6. Tree.props = {};
  7. //# sourceMappingURL=tree.js.map