This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-12-14 09:21:31 -08:00
|
|
|
import { storiesOf } from '@kadira/storybook';
|
2016-10-10 19:07:32 -07:00
|
|
|
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')} />
|
|
|
|
));
|