import type { Meta, StoryObj } from '@storybook/react'; import { Fieldset } from '../fieldset'; import { Legend, type LegendProps } from './legend'; const FieldsetWithLegend = (args: LegendProps) => (
); const meta = { component: Legend, title: 'Atoms/Forms/Legend', render: FieldsetWithLegend, } satisfies Meta