import { action } from '@storybook/addon-actions';
import { boolean, text } from '@storybook/addon-knobs';
import React from 'react';
import { Button } from './Button';
export default {
title: 'basic/Button',
component: Button,
};
export const _default = () => ;
export const invisible = () => ;
export const primary = () => ;
export const secondary = () => ;
export const cancel = () => ;
export const nude = () => ;
export const submit = () => ;