diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-12 12:08:57 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-12 12:08:57 +0200 |
commit | ffaba617d219b688f84b63b27cd35528eaa2bcff (patch) | |
tree | e8df2d7353fc6240262c0b9ea731f0201cfb0352 /storybook | |
parent | 8d8ef18bb6ae119c6962c1e19c2026908776c7c7 (diff) | |
parent | 4eeb7947bd9209ec137a032cf66c47041c27c07e (diff) |
Merge in react-storybook, add yarn lockfile
Diffstat (limited to 'storybook')
-rw-r--r-- | storybook/config.js | 16 | ||||
-rw-r--r-- | storybook/stories/button.story.jsx | 15 | ||||
-rw-r--r-- | storybook/stories/loading_indicator.story.jsx | 6 | ||||
-rw-r--r-- | storybook/storybook.css | 3 |
4 files changed, 40 insertions, 0 deletions
diff --git a/storybook/config.js b/storybook/config.js new file mode 100644 index 000000000..98dde07de --- /dev/null +++ b/storybook/config.js @@ -0,0 +1,16 @@ +import { configure } from '@kadira/storybook'; +import React from 'react'; +import { storiesOf, action } from '@kadira/storybook'; + +import './storybook.css' + +window.storiesOf = storiesOf; +window.action = action; +window.React = React; + +function loadStories () { + require('./stories/loading_indicator.story.jsx'); + require('./stories/button.story.jsx'); +} + +configure(loadStories, module); 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')} /> + )); diff --git a/storybook/stories/loading_indicator.story.jsx b/storybook/stories/loading_indicator.story.jsx new file mode 100644 index 000000000..d169e4f55 --- /dev/null +++ b/storybook/stories/loading_indicator.story.jsx @@ -0,0 +1,6 @@ +import LoadingIndicator from '../../app/assets/javascripts/components/components/loading_indicator.jsx' + +storiesOf('LoadingIndicator', module) + .add('default state', () => ( + <LoadingIndicator /> + )); diff --git a/storybook/storybook.css b/storybook/storybook.css new file mode 100644 index 000000000..3bda9e64c --- /dev/null +++ b/storybook/storybook.css @@ -0,0 +1,3 @@ +#root { + padding: 4rem; +} |