progress.stories.tsx 271 B

1234567891011
  1. import React from 'react';
  2. import { storiesOf } from '@storybook/react';
  3. import Progress from '../index';
  4. const stories = storiesOf('Progress', module);
  5. stories.add('Progress default', () => (
  6. <>
  7. <Progress direction='horizontal' percent={50} />
  8. </>
  9. ));