ldx-widgets
Version:
widgets
24 lines (18 loc) • 466 B
JavaScript
(function() {
var GridFormSection, React, div, h3, ref;
React = require('react');
ref = React.DOM, div = ref.div, h3 = ref.h3;
GridFormSection = function(props) {
var children;
children = props.children;
return div({
key: 'grid-row-1',
className: 'grid grid-pad'
}, div({
className: 'col-1-1'
}, h3({
className: 'form-section-title'
}, children)));
};
module.exports = GridFormSection;
}).call(this);