mirror of https://gitee.com/antv-l7/antv-l7
10 lines
306 B
TypeScript
10 lines
306 B
TypeScript
|
import { storiesOf } from '@storybook/react';
|
||
|
import * as React from 'react';
|
||
|
|
||
|
import RasterTile from './components/RasterTile';
|
||
|
import OsmRasterTile from './components/OsmRasterTile';
|
||
|
|
||
|
storiesOf('瓦片', module)
|
||
|
.add('RasterTile', () => <RasterTile />)
|
||
|
.add('OsmRasterTile', () => <OsmRasterTile />)
|