import React from 'react'; import { Meta, Story } from '@storybook/react'; import { Button, ButtonProps } from './Button'; export default { title: 'Components/Button', component: Button, argTypes: { onClick: { action: 'clicked' }, title: { control: { type: 'text', }, }, disabled: { control: { type: 'boolean', }, }, }, parameters: { controls: { expanded: true }, }, } as Meta; const Template: Story = args => ( <>