import { Meta, StoryObj } from "@storybook/react"; import Button from "./Button"; const meta = { /* 👇 The title prop is optional. * See https://storybook.js.org/docs/react/configure/overview#configure-story-loading * to learn how to generate automatic titles */ title: "Button", component: Button, } satisfies Meta; export default meta; export const Default: StoryObj = { args: { children: ( <> Update ), }, argTypes: { onClick: { action: "clicked" }, }, };