import React from 'react'; import { Meta, Story } from '@storybook/react'; import { Form } from '../BaseForm/Form'; import { RadioData } from './RadioData'; export default { title: 'Forms/Radio', component: Form, argTypes: {}, parameters: { controls: { expanded: true }, }, } as Meta; const DefaultTemplate: Story = args => (
{}} schema={{}}> ); export const Default = DefaultTemplate.bind({}); Default.args = { label: 'How many of these shows did you watch regularly?', name: 'regularviewer', options: [...RadioData], };