g6/stories/Interaction/interaction.stories.tsx

20 lines
500 B
TypeScript
Raw Normal View History

// import { Button } from '@storybook/react/demo';
import { storiesOf } from '@storybook/react';
import React from 'react';
2020-02-14 10:10:54 +08:00
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 />
));