import React from 'react'; import { ComponentStory, ComponentMeta } from '@storybook/react'; import { Button } from './Button'; export default { title: 'Example/Button', component: Button, argTypes: { backgroundColor: { control: 'color' } } } as ComponentMeta; const Template: ComponentStory = args =>