import React from 'react'; import uuid from 'uuid/v4'; import { Textarea } from '@meetfranz/forms'; import { storiesOf } from '../stores/stories'; const defaultProps = () => { const id = uuid(); return { label: 'Label', id: `test-${id}`, name: `test-${id}`, rows: 5, onChange: (e: React.ChangeEvent) => console.log('changed event', e), }; }; storiesOf('Textarea') .add('Basic', () => (