diff --git a/src/stories/Button.stories.ts b/src/stories/Button.stories.tsx similarity index 92% rename from src/stories/Button.stories.ts rename to src/stories/Button.stories.tsx index 4754d29..0ea9161 100644 --- a/src/stories/Button.stories.ts +++ b/src/stories/Button.stories.tsx @@ -28,27 +28,27 @@ type Story = StoryObj; export const Primary: Story = { args: { primary: true, - label: "Button", + label: "Primary Button", }, }; export const Secondary: Story = { args: { - label: "Button", + label: "Secondary Button", }, }; export const Large: Story = { args: { size: "large", - label: "Button", + label: "Large Button", }, }; export const Small: Story = { args: { size: "small", - label: "Button", + label: "Small Button", }, };