Skip to content

Commit

Permalink
Add textarea story.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Dec 17, 2023
1 parent 56cd65e commit ce6ba7a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions stories/text-area.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import type { Meta, StoryObj } from "@storybook/react";
import { Textarea } from "src/components/ui/textarea";

const meta: Meta<typeof Textarea> = {
component: Textarea,
};

export default meta;
type Story = StoryObj<typeof Textarea>;

export const Default: Story = {
args: {
placeholder: "Type your message here.",
},
};

0 comments on commit ce6ba7a

Please sign in to comment.