add stylesheet; add story for Button component
This commit is contained in:
parent
71e7537330
commit
4eeb7947bd
4 changed files with 4811 additions and 1 deletions
15
storybook/stories/button.story.jsx
Normal file
15
storybook/stories/button.story.jsx
Normal file
|
@ -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')} />
|
||||
));
|
Loading…
Add table
Add a link
Reference in a new issue