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.
18 lines
545 B
18 lines
545 B
import React from 'react';
|
|
import { action, storiesOf } from '@kadira/storybook';
|
|
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')} />
|
|
));
|