2017-05-13 09:55:56 -04:00
|
|
|
import React from 'react';
|
2017-06-04 10:26:07 -04:00
|
|
|
import { storiesOf } from '@storybook/react';
|
|
|
|
import { action } from '@storybook/addon-actions';
|
2017-05-13 09:55:56 -04:00
|
|
|
import Button from 'mastodon/components/button';
|
2016-10-10 22:07:32 -04:00
|
|
|
|
|
|
|
storiesOf('Button', module)
|
|
|
|
.add('default state', () => (
|
2017-06-05 22:07:34 -04:00
|
|
|
<Button text='submit' onClick={action('clicked')} />
|
2016-10-10 22:07:32 -04:00
|
|
|
))
|
|
|
|
.add('secondary', () => (
|
2017-06-05 22:07:34 -04:00
|
|
|
<Button secondary text='submit' onClick={action('clicked')} />
|
2016-10-10 22:07:32 -04:00
|
|
|
))
|
|
|
|
.add('disabled', () => (
|
2017-06-05 22:07:34 -04:00
|
|
|
<Button disabled text='submit' onClick={action('clicked')} />
|
2016-10-10 22:07:32 -04:00
|
|
|
))
|
|
|
|
.add('block', () => (
|
2017-06-05 22:07:34 -04:00
|
|
|
<Button block text='submit' onClick={action('clicked')} />
|
2016-10-10 22:07:32 -04:00
|
|
|
));
|