parent
e4f10bf9b1
commit
2f7ba7da4a
File diff suppressed because it is too large
Load Diff
@ -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')} />
|
||||
));
|
@ -0,0 +1,3 @@
|
||||
#root {
|
||||
padding: 4rem;
|
||||
}
|
Loading…
Reference in new issue