Repository URL to install this package:
|
Version:
2.1.3-perf.4 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const react_1 = tslib_1.__importDefault(require("react"));
const Form_1 = require("./Form");
const styled_1 = require("./styled");
class CommentBox extends react_1.default.Component {
render() {
const { className, dataQa } = this.props;
const passThroughProps = {
className,
'data-qa': dataQa,
};
return (react_1.default.createElement(styled_1.FormWrapper, Object.assign({}, passThroughProps),
react_1.default.createElement(Form_1.Form, Object.assign({}, this.props))));
}
}
exports.CommentBox = CommentBox;
exports.default = CommentBox;
//# sourceMappingURL=CommentBox.js.map