mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 04:58:55 +08:00
e7aa014c31
* docs: init * chore: all types * docs: faq * chore: fix lint
27 lines
535 B
TypeScript
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;
|