{error}
} + > + ); +}; diff --git a/libs/ui/src/atoms/password-input/index.ts b/libs/ui/src/atoms/password-input/index.ts new file mode 100644 index 0000000..aa25c3b --- /dev/null +++ b/libs/ui/src/atoms/password-input/index.ts @@ -0,0 +1 @@ +export * from "./password-input"; \ No newline at end of file diff --git a/libs/ui/src/atoms/password-input/password-input.stories.tsx b/libs/ui/src/atoms/password-input/password-input.stories.tsx new file mode 100644 index 0000000..d2db711 --- /dev/null +++ b/libs/ui/src/atoms/password-input/password-input.stories.tsx @@ -0,0 +1,58 @@ +import { Meta, StoryObj } from '@storybook/react'; +import { PasswordInput } from './password-input'; + +const meta: Meta{error}
} + > + ); +}; diff --git a/libs/ui/src/atoms/textarea/index.ts b/libs/ui/src/atoms/textarea/index.ts new file mode 100644 index 0000000..23f3d74 --- /dev/null +++ b/libs/ui/src/atoms/textarea/index.ts @@ -0,0 +1 @@ +export * from "./textarea"; diff --git a/libs/ui/src/atoms/textarea/textarea.stories.tsx b/libs/ui/src/atoms/textarea/textarea.stories.tsx new file mode 100644 index 0000000..ffe3c44 --- /dev/null +++ b/libs/ui/src/atoms/textarea/textarea.stories.tsx @@ -0,0 +1,49 @@ +import { Meta, StoryObj } from "@storybook/react"; +import { Textarea } from "./textarea"; + +const meta: Meta = { + title: "Components/Textarea", + component: Textarea, + argTypes: { + size: { + control: "select", + options: ["sm", "md", "lg"], + }, + }, +}; + +export default meta; +type Story = StoryObj{error}
} + > + ); +};