import React from 'react';
import { storiesOf } from '@storybook/react';
import Button, { ButtonGroup } from './index';
const defaultButton = () => (
);
const buttonWithSize = () => (
<>
>
);
const buttonWithType = () => (
<>
>
);
const buttonWithGroup = () => (
<>
>
);
storiesOf('Button', module)
.add('default', defaultButton)
.add('button size', buttonWithSize)
.add('button type', buttonWithType)
.add('button group', buttonWithGroup);