/** @jsx React.DOM */ var Checkbox = createReactClass({ render: function() { return ( {this.props.checked ? { "\u2611" } : { "\u2610" } } ); }, });