mirror of https://gitee.com/antv-l7/antv-l7
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
|
import { storiesOf } from '@storybook/react';
|
||
|
import * as React from 'react';
|
||
|
|
||
|
|
||
|
import Point from './components/point'
|
||
|
|
||
|
storiesOf('自定义模版', module)
|
||
|
.add('Point', () => <Point/>)
|