My simple React hello world example isn't letting me list the items horizontally.
It looks like bootstrap .col-sm-4 isn't getting applied. I'm sure I'm missing something super simple.
http://plnkr.co/edit/QWCkRzHMe5jUfIMVig2P?p=preview
var HelloWorld = React.createClass({
render: function() {
return (
<div className="container">
<div className="row">
<div className="col-sm-4">Left</div>
<div className="col-sm-4">Middle</div>
<div className="col-sm-4">Right</div>
</div>
</div>
);
}
});
// Now lets render the component.
React.render(<HelloWorld/>, // We pass the value of the prop through an attribute
document.getElementById('app') // Element to attach component to
);