import React from 'react'; import { ComponentMeta, ComponentStory } from '@storybook/react'; import { Button, ButtonProps } from './Button'; export default { title: 'Button', component: Button, } as ComponentMeta; const Template: ComponentStory = function Template({ children, onClick, }: ButtonProps) { return ; }; export const Primary = Template.bind({}); Primary.args = { children: 'hello', };