import React from 'react'; import { action } from '@storybook/addon-actions'; import { boolean, text } from '@storybook/addon-knobs'; import Button from './Button'; export default { title: 'Common/Button', component: Button }; export const AllFeatures = () => ( ); export const SubmitButton = () => ( ); export const PrimaryButton = () => ; export const DisabledButton = () => ; export const AnchorButton = () => ( ); export const ReactRouterLink = () => ( );