import type { Meta, StoryObj } from '@storybook/react-vite'; import { Textarea } from './textarea'; const meta = { title: 'Components/Textarea', component: Textarea, parameters: { layout: 'centered', docs: { description: { component: 'Multi-line text field. Grows with its content through `field-sizing-content`, so no auto-resize JavaScript is needed.', }, }, }, tags: ['autodocs'], args: { placeholder: 'Tell us what happened…' }, decorators: [(Story) =>