xchain-components
Version:
Xchain Components
18 lines (15 loc) • 494 B
JavaScript
/* @flow */
/* eslint react/jsx-filename-extension: 0 */
import React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { withInfo } from '@storybook/addon-info';
import XTextArea from 'components/XTextArea';
export default storiesOf('XTextArea', module)
.addDecorator(withInfo)
.add('with placeholder', () => (
<XTextArea
placeholder="Enter Orders, Products, Vendors"
borderColor="#e6ebf2"
/>
));