mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 00:29:12 +08:00
40 lines
1010 B
TypeScript
40 lines
1010 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
import BehaviorMap from '../../../.dumi/theme/common/BehaviorMap';
|
||
|
|
||
|
const BehaviorPattern: React.FC = () => (
|
||
|
<BehaviorMap
|
||
|
data={{
|
||
|
id: '200000004',
|
||
|
label: '了解页面/模块内需要关注的提示',
|
||
|
children: [
|
||
|
{
|
||
|
id: '500000061',
|
||
|
label: '了解提示信息',
|
||
|
targetType: 'mvp',
|
||
|
children: [
|
||
|
{
|
||
|
id: '707000085',
|
||
|
label: '了解提示内容',
|
||
|
link: 'components-alert-index-tab-design-demo-content',
|
||
|
},
|
||
|
{
|
||
|
id: '707000086',
|
||
|
label: '了解提示类型',
|
||
|
link: 'components-alert-index-tab-design-demo-type',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
id: '200000005',
|
||
|
label: '针对提示进行操作',
|
||
|
targetType: 'extension',
|
||
|
link: 'components-alert-index-tab-design-demo-action',
|
||
|
},
|
||
|
],
|
||
|
}}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default BehaviorPattern;
|