mirror of https://gitee.com/antv-l7/antv-l7
8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
|
import { storiesOf } from '@storybook/react';
|
||
|
import * as React from 'react';
|
||
|
import Country from './Layer/Country';
|
||
|
|
||
|
|
||
|
storiesOf('行政区划', module)
|
||
|
.add('中国地图', () => <Country />);
|