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