bootstrap-4-react
Version:
Bootstrap 4 React components
21 lines (17 loc) • 445 B
JSX
import React, { Component } from 'react';
import { stack, withClassName } from '../../utilities';
import { BTextarea } from '../dom';
import { withSizing, withValidation } from './common';
class FormTextarea extends Component {
render() {
return <BTextarea {...this.props}>{this.props.children}</BTextarea>
}
}
export default stack(
FormTextarea,
[
withClassName('form-control'),
withSizing(),
withValidation()
]
);