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.
43 lines
789 B
43 lines
789 B
2 years ago
|
import React from 'react';
|
||
|
import {
|
||
|
DownOutlined,
|
||
|
FrownFilled,
|
||
|
FrownOutlined,
|
||
|
MehOutlined,
|
||
|
SmileOutlined,
|
||
|
} from '@ant-design/icons';
|
||
|
import { Tree } from 'antd';
|
||
|
import type { DataNode } from 'antd/es/tree';
|
||
|
|
||
|
const treeData: DataNode[] = [
|
||
|
{
|
||
|
title: 'parent 1',
|
||
|
key: '0-0',
|
||
|
icon: <SmileOutlined />,
|
||
|
children: [
|
||
|
{
|
||
|
title: 'leaf',
|
||
|
key: '0-0-0',
|
||
|
icon: <MehOutlined />,
|
||
|
},
|
||
|
{
|
||
|
title: 'leaf',
|
||
|
key: '0-0-1',
|
||
|
icon: ({ selected }) => (selected ? <FrownFilled /> : <FrownOutlined />),
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
];
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Tree
|
||
|
showIcon
|
||
|
defaultExpandAll
|
||
|
defaultSelectedKeys={['0-0-0']}
|
||
|
switcherIcon={<DownOutlined />}
|
||
|
treeData={treeData}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|