mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
29 lines
538 B
TypeScript
29 lines
538 B
TypeScript
|
import React from 'react';
|
||
|
import { Tree } from 'antd';
|
||
|
import type { DataNode } from 'antd/es/tree';
|
||
|
|
||
|
const treeData: DataNode[] = [
|
||
|
{
|
||
|
title: 'parent',
|
||
|
key: '0',
|
||
|
children: [
|
||
|
{
|
||
|
title: 'child 1',
|
||
|
key: '0-0',
|
||
|
disabled: true,
|
||
|
},
|
||
|
{
|
||
|
title: 'child 2',
|
||
|
key: '0-1',
|
||
|
disableCheckbox: true,
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Tree checkable defaultSelectedKeys={['0-1']} defaultExpandAll treeData={treeData} blockNode />
|
||
|
);
|
||
|
|
||
|
export default App;
|