signal-desktop/sticker-creator/elements/ProgressBar.stories.tsx

18 lines
461 B
TypeScript
Raw Normal View History

2019-12-17 20:25:57 +00:00
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { number } from '@storybook/addon-knobs';
import { StoryRow } from './StoryRow';
import { ProgressBar } from './ProgressBar';
2019-12-17 20:25:57 +00:00
storiesOf('Sticker Creator/elements', module).add('ProgressBar', () => {
const count = number('count', 5);
const total = number('total', 10);
return (
<StoryRow>
<ProgressBar count={count} total={total} />
</StoryRow>
);
});