import type { Meta, StoryObj } from '@storybook/react'; import { RadioGroup, RadioGroupItem } from './radio-group'; const meta = { title: 'UI/RadioGroup', component: RadioGroup, tags: ['autodocs'], argTypes: { disabled: { control: 'boolean' }, }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: (args) => (
), }; export const Disabled: Story = { args: { disabled: true, }, render: (args) => (
), };