| import type { Meta, StoryObj } from "@storybook/react"; | |
| import { Button } from "../components/ui/button"; | |
| // More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction | |
| const meta: Meta<typeof Button> = { | |
| title: "Primitives/Button", | |
| component: Button, | |
| tags: ["autodocs"], | |
| argTypes: {}, | |
| }; | |
| export default meta; | |
| type Story = StoryObj<typeof Button>; | |
| // More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args | |
| export const Default: Story = { | |
| args: { | |
| variant: "default", | |
| size: "default", | |
| children: "Button", | |
| }, | |
| }; | |