UNPKG

react-components-library

Version:
22 lines (16 loc) 537 B
/* 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/. */ "use strict"; 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;