ant-design/components/tree/demo/big-data.tsx
二货爱吃白萝卜 e7aa014c31
chore: Add type util (#46923)
* docs: init

* chore: all types

* docs: faq

* chore: fix lint
2024-01-11 15:55:58 +08:00

27 lines
535 B
TypeScript

import React from 'react';
import { Tree } from 'antd';
import type { TreeDataNode } from 'antd';
const treeData: TreeDataNode[] = [];
for (let i = 0; i < 100; i += 1) {
const children: TreeDataNode[] = [];
for (let j = 0; j < 100; j += 1) {
children.push({
title: `child ${i}-${j}`,
key: `l-${i}-${j}`,
});
}
treeData.push({
title: `parent ${i}`,
key: `l-${i}`,
children,
});
}
const App: React.FC = () => <Tree defaultExpandAll height={400} treeData={treeData} />;
export default App;