import type { Meta, StoryObj } from '@storybook/react-vite'; import { Label } from '../Label/Label.tsx'; import { RadioGroup } from './RadioGroup.tsx'; type Story = StoryObj; export default { component: RadioGroup, tags: ['autodocs'] } as Meta; export const Default: Story = { args: { children: ( <>
), defaultValue: 'default', onValueChange(value) { alert(value); } } };