import * as React from 'react'; import { action } from '@storybook/addon-actions'; import { boolean } from '@storybook/addon-knobs'; import Button from './Button'; import notes from './Button.stories.md'; export const regular = () => ( ); export const loading = () => ; export const disabled = () => ; export const withRadar = () => ; export default { title: 'Components|Button', component: Button, parameters: { notes, }, };