Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/storybook/stories/button.story.js
2017-06-06 04:07:34 +02:00

18 lines
587 B
JavaScript

import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import Button from 'mastodon/components/button';
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')} />
));