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';
|
|
|
|
import { action, storiesOf } from '@kadira/storybook';
|
|
|
|
import Button from 'mastodon/components/button';
|
2016-10-10 19:07:32 -07:00
|
|
|
|
|
|
|
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')} />
|
|
|
|
));
|