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.
28 lines
538 B
28 lines
538 B
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;
|
|
|