mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
38cf5e8a75
* docs: unify component export file as index.tsx * docs: compatible with old anchors * chore: clean * test: update snapshot * fix: window env --------- Co-authored-by: Peach <scdzwyxst@gmail.com>
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
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: 'breadcrumb-index-tab-design-demo-basic',
|
|
},
|
|
{
|
|
id: '707000086',
|
|
label: '了解系统层级结构',
|
|
link: 'breadcrumb-index-tab-design-demo-basic',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: '200000005',
|
|
label: '向上导航',
|
|
targetType: 'mvp',
|
|
link: 'breadcrumb-index-tab-design-demo-basic',
|
|
},
|
|
{
|
|
id: '200000006',
|
|
label: '快捷导航',
|
|
targetType: 'extension',
|
|
link: 'breadcrumb-index-tab-design-demo-overlay',
|
|
},
|
|
],
|
|
}}
|
|
/>
|
|
);
|
|
|
|
export default BehaviorPattern;
|