/** @jsx React.DOM */ var LabelledSection = createReactClass({ render: function() { return (
{this.props.label}
{this.props.children}
); }, });