2020-08-10 10:44:28 +08:00
|
|
|
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';
|
2021-09-27 15:52:20 +08:00
|
|
|
import Earth from './components/earth'
|
2021-10-11 15:43:58 +08:00
|
|
|
import Earth2 from './components/earth2'
|
2020-08-10 10:44:28 +08:00
|
|
|
// @ts-ignore
|
2021-09-27 15:52:20 +08:00
|
|
|
storiesOf('自定义地图', module)
|
|
|
|
.add('Earth', () => <Earth />)
|
2021-10-11 15:43:58 +08:00
|
|
|
.add('Earth2', () => <Earth2 />)
|
2021-09-27 15:52:20 +08:00
|
|
|
.add('地图', () => <Map />)
|
2021-08-19 18:19:22 +08:00
|
|
|
.add('地图2', () => <Map2 />);
|