mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
b27066e154
Fix #205, fix #156, fix #124
17 lines
544 B
JavaScript
17 lines
544 B
JavaScript
import { storiesOf } from '@kadira/storybook';
|
|
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')} />
|
|
));
|