mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 04:38:55 +08:00
21 lines
455 B
TypeScript
21 lines
455 B
TypeScript
// import { Button } from '@storybook/react/demo';
|
|
import { storiesOf } from '@storybook/react';
|
|
import React from 'react';
|
|
import Grid from './component/grid';
|
|
import Minimap from './component/minimap';
|
|
import MinimapForce from './component/minimap-force';
|
|
|
|
export default { title: 'Plugins' };
|
|
|
|
storiesOf('Plugins', module)
|
|
.add('grid', () => (
|
|
<Grid />
|
|
))
|
|
.add('minimap', () => (
|
|
<Minimap />
|
|
))
|
|
|
|
.add('minimap force', () => (
|
|
<MinimapForce />
|
|
))
|