import { type Meta, type StoryObj } from '@storybook/react' import { TextArea } from '../index' const meta = { title: 'Components/TextAreaField/TextArea (primitive)', component: TextArea, parameters: { a11y: { config: { rules: [ { // Built with no label on purpose, to be used within `TextAreaField` where label is present id: 'label', enabled: false, }, ], }, }, }, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, }