import type { Meta, StoryObj } from '@storybook/react-vite'; import { Label } from './Label.tsx'; type Story = StoryObj; export default { component: Label, tags: ['autodocs'] } as Meta; export const Default: Story = { args: { children: 'My Label' } };