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.
42 lines
789 B
42 lines
789 B
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;
|
|
|