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
29 lines
538 B
TypeScript
29 lines
538 B
TypeScript
import React from 'react';
|
|
import { Tree } from 'antd';
|
|
import type { TreeDataNode } from 'antd';
|
|
|
|
const treeData: TreeDataNode[] = [
|
|
{
|
|
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;
|