import React from 'react' import type { Meta, StoryObj } from '@storybook/react' import { Radio } from './Radio' import { Row } from '../Row/Row' const meta: Meta = { title: 'Radio', component: Radio } export default meta type Story = StoryObj export const Checked: Story = { render: () => ( <> ) } export const Unchecked: Story = { render: () => ( <> ) } export const Options: Story = { render: () => ( ) } export const Toggle: Story = { render: () => ( <> ) }