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

14 lines
411 B
TypeScript

import { storiesOf } from '@storybook/react';
import * as React from 'react';
import Map from './components/Map';
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 />)
.add('地图2', () => <Map2 />);