mirror of https://gitee.com/antv-l7/antv-l7
11 lines
418 B
TypeScript
11 lines
418 B
TypeScript
import { storiesOf } from '@storybook/react';
|
|
import * as React from 'react';
|
|
import AMapModel from './Components/amap_three';
|
|
import MapboxModel from './Components/mapbox_three';
|
|
import ThreeRender from './Components/threeRender';
|
|
|
|
storiesOf('3D 模型', module)
|
|
.add('ThreeJS Render', () => <ThreeRender />, {})
|
|
.add('高德模型1.x', () => <AMapModel />, {})
|
|
.add('Mapbox模型', () => <MapboxModel />, {});
|