react-components-library
Version:
replace 'onBrowserComplete' on karma-coverage with
22 lines (16 loc) • 537 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
;
var React = require('react');
var FormControl = React.createClass({
displayName: "FormControl",
render: function render() {
return React.createElement(
"div",
{ className: "form-control" },
this.props.children
);
}
});
module.exports = FormControl;