import { Story, Meta } from '@storybook/react' import Textarea from './Textarea' import { TextareaProps } from './types' export default { component: Textarea, title: 'Controls/Textarea', args: { disabled: false, fullwidth: false, active: false, }, argTypes: { onChange: { action: 'change', table: { disable: true }, }, }, } as Meta export const Basic: Story = (props) =>