Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / forms / views / CommentBox / CommentBox.js
Size: Mime:
"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