mirror of https://gitee.com/antv-l7/antv-l7
14 lines
411 B
TypeScript
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 />);
|