import React from 'react'
import { type Meta, type StoryObj } from '@storybook/react'
import { Label } from '~components/Label'
import { FieldGroup } from '../index'
const meta = {
title: 'Components/Form primitives/FieldGroup',
component: FieldGroup,
args: {
children: (
<>
>
),
},
} satisfies Meta
export default meta
type Story = StoryObj
export const Playground: Story = {
parameters: {
docs: {
canvas: {
sourceState: 'shown',
},
},
},
}
export const Inline: Story = {
render: () => (
<>
>
),
}
export const Default: Story = {
render: () => (
<>
>
),
}