UNPKG

@appearhere/bloom

Version:

Appear Here's pattern library and styleguide

17 lines (13 loc) 417 B
import React from 'react'; import { storiesOf, action } from '@storybook/react'; import { withKnobs, number } from '@storybook/addon-knobs'; import StarRating from './StarRating'; const stories = storiesOf('FormComponents', module); stories.addDecorator(withKnobs); stories.add('StarRating', () => ( <StarRating name="RadioGroup" value={ number('Value', 1) } onChange={ action('Changing') } /> ));