Arunoda Susiripala 75b7eed2a9 Add some comments.
2016-09-07 18:12:28 +05:30

27 lines
600 B
JavaScript

import React from 'react';
import { storiesOf } from '@kadira/storybook';
import { action } from '@kadira/storybook-addon-actions';
import {
withKnobs,
number,
object,
boolean,
text,
} from '../../src';
import Button from './Button';
storiesOf('Button', module)
.addDecorator((story, context) => (withKnobs(story)(context)))
.add('default view', () => (
<Button
onClick={ action('button clicked') }
disabled={boolean('disabled', false)}
>
Hello
</Button>
))
.add('Story without any knobs', () => (
<Button>{text('Label', 'Hello')}</Button>
));