You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
554 B
30 lines
554 B
/*
|
|
* debug: true
|
|
*/
|
|
|
|
import { Tree } from 'antd';
|
|
import type { DataNode } from 'antd/es/tree';
|
|
import React from 'react';
|
|
|
|
const treeData: DataNode[] = [];
|
|
|
|
for (let i = 0; i < 100; i += 1) {
|
|
const children: DataNode[] = [];
|
|
|
|
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;
|
|
|