mirror of https://gitee.com/antv-l7/antv-l7
11 lines
395 B
TypeScript
11 lines
395 B
TypeScript
|
import { storiesOf } from '@storybook/react';
|
||
|
import * as React from 'react';
|
||
|
import AdvancedAPI from './components/AdvancedAPI';
|
||
|
import Highlight from './components/Highlight';
|
||
|
import Tooltip from './components/Tooltip';
|
||
|
|
||
|
storiesOf('交互', module)
|
||
|
.add('拾取 & 高亮', () => <Highlight />)
|
||
|
.add('拾取 & Tooltip', () => <Tooltip />)
|
||
|
.add('高级拾取 API', () => <AdvancedAPI />);
|