32 lines
705 B
TypeScript
32 lines
705 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react";
|
|
import { FormField } from "./form-field.js";
|
|
|
|
const meta = {
|
|
title: "Molecules/FormField",
|
|
component: FormField,
|
|
tags: ["autodocs"],
|
|
} satisfies Meta<typeof FormField>;
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
export const Default: Story = {
|
|
args: { label: "Email", placeholder: "you@example.com", type: "email" },
|
|
};
|
|
|
|
export const WithDescription: Story = {
|
|
args: {
|
|
label: "Username",
|
|
placeholder: "johndoe",
|
|
description: "Must be 3-31 characters",
|
|
},
|
|
};
|
|
|
|
export const WithError: Story = {
|
|
args: {
|
|
label: "Password",
|
|
type: "password",
|
|
error: "Password must be at least 6 characters",
|
|
},
|
|
};
|