24 lines
503 B
TypeScript
24 lines
503 B
TypeScript
import React from 'react';
|
|
import { Tree } from '@zhst/biz';
|
|
import { LoadingOutlined, PlayCircleOutlined, SettingOutlined } from '@ant-design/icons';
|
|
import { treeData } from './mock'
|
|
|
|
const demo = () => {
|
|
return (
|
|
<div style={{ width: '320px' }}>
|
|
<Tree
|
|
data={treeData}
|
|
customOptions={(
|
|
<>
|
|
<PlayCircleOutlined />
|
|
<SettingOutlined />
|
|
<LoadingOutlined />
|
|
</>
|
|
)}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default demo;
|