import { Meta, Story } from '@storybook/react'; import { AddButton } from './AddButton'; export default { component: AddButton, title: 'Components/Buttons/AddButton', } as Meta; type Args = { label: string; }; function Template({ label }: Args) { return {label}; } export const Primary: Story = Template.bind({}); Primary.args = { label: 'Create new container', };