import { storiesOf } from '@storybook/react';
import * as React from 'react';
import AMapDraw from './Components/AmapDraw';
import Circle from './Components/Circle';
import DrawCircle from './Components/DrawCircle';
import DrawControl from './Components/DrawControl';
import Line from './Components/DrawLine';
import Point from './Components/DrawPoint';
import DrawRect from './Components/DrawRect';
import Polygon from './Components/Polygon';
storiesOf('绘制', module)
.add('圆', () => , {})
.add('矩形', () => , {})
.add('多边形', () => , {})
.add('点', () => , {})
.add('路径', () => , {})
.add('绘制组件', () => , {})
.add('绘制圆', () => , {})
.add('高德地图', () => , {});