diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-12 12:09:37 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-12 12:09:37 +0200 |
commit | e2ff39bf5db8cecd2bbe348dc2c3cf431a6d36ec (patch) | |
tree | e8df2d7353fc6240262c0b9ea731f0201cfb0352 /storybook/stories/button.story.jsx | |
parent | 8d8ef18bb6ae119c6962c1e19c2026908776c7c7 (diff) | |
parent | ffaba617d219b688f84b63b27cd35528eaa2bcff (diff) |
Merge branch 'kschaper-react-storybook'
Diffstat (limited to 'storybook/stories/button.story.jsx')
-rw-r--r-- | storybook/stories/button.story.jsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/storybook/stories/button.story.jsx b/storybook/stories/button.story.jsx new file mode 100644 index 000000000..fe6d57ad0 --- /dev/null +++ b/storybook/stories/button.story.jsx @@ -0,0 +1,15 @@ +import Button from '../../app/assets/javascripts/components/components/button.jsx' + +storiesOf('Button', module) + .add('default state', () => ( + <Button text="submit" onClick={action('clicked')} /> + )) + .add('secondary', () => ( + <Button secondary text="submit" onClick={action('clicked')} /> + )) + .add('disabled', () => ( + <Button disabled text="submit" onClick={action('clicked')} /> + )) + .add('block', () => ( + <Button block text="submit" onClick={action('clicked')} /> + )); |