import * as React from 'react';
import { boolean } from '@storybook/addon-knobs';
import PlainButton from './PlainButton';
import { ButtonType } from '../button';
import notes from './PlainButton.stories.md';
export const regular = () => (
Click Here
);
export const disabled = () => Click Here;
export default {
title: 'Components|PlainButton',
component: PlainButton,
parameters: {
notes,
},
};