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