import type { Meta, StoryObj } from '@storybook/react'; import { Label } from './label'; import { Input } from './input'; const meta = { title: 'UI/Label', component: Label, tags: ['autodocs'], argTypes: { children: { control: 'text' }, }, args: { children: 'Email Address', } } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = {}; export const WithInput: Story = { render: (args) => (
), };