react-bootstrap
Version:
Bootstrap 3 components build with React
12 lines (10 loc) • 350 B
JavaScript
/** @jsx React.DOM */
var progressInstance = (
<div>
<ProgressBar striped bsStyle="success" now={40} />
<ProgressBar striped bsStyle="info" now={20} />
<ProgressBar striped bsStyle="warning" now={60} />
<ProgressBar striped bsStyle="danger" now={80} />
</div>
);
React.renderComponent(progressInstance, mountNode);