mirror of
https://gitee.com/antv/g6.git
synced 2024-12-04 12:49:04 +08:00
20 lines
500 B
TypeScript
20 lines
500 B
TypeScript
// import { Button } from '@storybook/react/demo';
|
|
import { storiesOf } from '@storybook/react';
|
|
import React from 'react';
|
|
import MoveViewPort from './component/view-port';
|
|
import AltTab from './component/alt-tab';
|
|
import AddItem from './component/addItem';
|
|
|
|
export default { title: 'Interaction' };
|
|
|
|
storiesOf('Interaction', module)
|
|
.add('move view port', () => (
|
|
<MoveViewPort />
|
|
))
|
|
.add('alt tab in windows', () => (
|
|
<AltTab />
|
|
))
|
|
.add('add item', () => (
|
|
<AddItem />
|
|
));
|