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', () => (
    
  ))
  .add('secondary', () => (
    
  ))
  .add('disabled', () => (
    
  ))
  .add('block', () => (
    
  ));