import { Meta, StoryObj } from "@storybook/react" import React, { useState } from "react" import { TestGridContainer } from "../../../tests/TestGridContainer" import { RadioButtonGroup, RadioButtonGroupProps } from "./RadioButtonGroup" type Story = StoryObj const meta: Meta = { title: "Design System/RadioButtonGroup", component: RadioButtonGroup, args: { defaultValue: "option-one", children: ( <> Option one Option one is the best option Option two Option two is also a good choice Option three Option three is not as good ), }, } export default meta const Template = (args: RadioButtonGroupProps) => { const [value, setValue] = useState() return } export const Default: Story = { render: Template, } export const DisabledGroup: Story = { render: Template, args: { disabled: true, }, } export const DisabledItem: Story = { render: Template, args: { children: ( <> Option one Option one is the best option Option two Option two is disabled ), }, } export const AllVariants: Story = { render: function Render() { return ( ) }, }