wix-style-react
Version:
19 lines (17 loc) • 515 B
JavaScript
import React from 'react';
import InputArea from '..';
import { StorybookComponents } from 'wix-storybook-utils/StorybookComponents';
import FormField from '../../FormField';
export default () => (
<StorybookComponents.Stack flexDirection="column" width="50%">
<FormField label="Description">
<InputArea
placeholder="Tell participants about your program."
resizable
rows={5}
hasCounter
maxLength={400}
/>
</FormField>
</StorybookComponents.Stack>
);