import type { Meta, StoryObj } from "@storybook/react-vite"; import { fn } from "storybook/test"; import { AuthForm } from "./auth-form"; const meta = { title: "UI Library/AuthForm", component: AuthForm, tags: ["autodocs"], args: { onSubmit: fn(), }, } satisfies Meta; export default meta; type Story = StoryObj; export const SignIn: Story = {}; export const Custom: Story = { args: { title: "Log in to Acme", description: "Enter your credentials below", submitLabel: "Continue", }, };