You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
587 B
19 lines
587 B
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')} />
|
|
));
|