import * as React from 'react';
import { action } from 'storybook/actions';
import PrimaryButton from './PrimaryButton';
import notes from './PrimaryButton.stories.md';
export const regular = () => (
Click Here
);
export const loading = () => Click Here;
export const disabled = () => Click Here;
export default {
title: 'Components/Buttons/PrimaryButton',
component: PrimaryButton,
parameters: {
notes,
},
};