File "textarea.stories.js"
Full Path: /home/planet5/public_html/bansibaba.com/wp-content1/themes/Divi/common/stories/controls/input/textarea.stories.js
File size: 394 bytes
MIME-type: --
Charset: utf-8
import Textarea from '../../../controls/input/textarea';
export default {
title: 'Controls/Input/Textarea',
component: Textarea, // The actual component
argTypes: {
onChange: {
action: 'changed',
table: {
disable: true,
},
},
},
};
export const WithPlaceholder = {
args: {
placeholder: 'Enter text here...',
className: 'textarea',
},
};