Repository URL to install this package:
|
Version:
2.0.4 ▾
|
"use strict";
var __importDefault = this && this.__importDefault || function (mod) {
return mod && mod.__esModule ? mod : {
"default": mod
};
};
Object.defineProperty(exports, "__esModule", {
value: true
});
const react_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