UNPKG

282 BJavaScriptView Raw
1/* @flow */
2import React from 'react';
3import Spinner from '../src/components/spinner';
4import { storiesOf } from '@storybook/react';
5
6storiesOf('Spinner', module)
7 .add('Defaults', () => <Spinner />)
8 .add('Order tool version', () => <Spinner width="56px" stroke="10px" />);