import { tree } from '@antv/vendor/d3-hierarchy'; import { DataComponent as DC } from '../runtime'; import { hierarchyFunction } from './cluster'; export type TreeOptions = Omit, 'type'>; export const Tree: DC = (options) => { return hierarchyFunction(tree)(options); }; Tree.props = {};