antv-l7/stories/customMap/map.stories.tsx

14 lines
411 B
TypeScript
Raw Normal View History

import { storiesOf } from '@storybook/react';
import * as React from 'react';
import Map from './components/Map';
2021-08-19 18:19:22 +08:00
import Map2 from './components/Map2';
import Earth from './components/earth'
import Earth2 from './components/earth2'
// @ts-ignore
storiesOf('自定义地图', module)
.add('Earth', () => <Earth />)
.add('Earth2', () => <Earth2 />)
.add('地图', () => <Map />)
2021-08-19 18:19:22 +08:00
.add('地图2', () => <Map2 />);