mirror of https://gitee.com/antv-l7/antv-l7
14 lines
205 B
TypeScript
14 lines
205 B
TypeScript
|
import { storiesOf } from '@storybook/react';
|
||
|
import * as React from 'react';
|
||
|
|
||
|
|
||
|
import Line from './components/line';
|
||
|
|
||
|
|
||
|
// @ts-ignore
|
||
|
storiesOf('functions', module)
|
||
|
|
||
|
.add('line', () => <Line />)
|
||
|
|
||
|
|