npm install react-progress-2!Demo

#### NPM
npm install react-progress-2
#### JSPM
jspm install npm:react-progress-2
Include react-progress-2/main.css to your project. With SystemJS CSS plugin you simply need to write this line:
``js`
import "react-progress-2/main.css!"react-progress-2
Include and put it somewhere in the top-component, for example:`js
import React from "react";
import Progress from "react-progress-2";
var Layout = React.createClass({
render: function() {
return (
Now, whenever you need to show an indicator, just call Progress#show, for example:
`js
loadFeed: function() {
Progress.show();
// do your ajax thing.
},onLoadFeedCallback: function() {
Progress.hide();
// render feed.
}
`Please note, that
show and hide calls are stacked, so after n-consecutive show calls, you need to do n hide calls to hide an indicator or you can use Progress.hideAll().Styling
$3
`css
.loader-60devs .loader-60devs-progress {
background: #ff6f00;
}
`$3
`jsx
style={{background: 'orange'}}
thumbStyle={{background: 'green'}} />
`Examples
ExamplesContribution
Do the following steps if you have the willing to fix a bug or just add some features to react-progress-2
`
cd dev
npm install
jspm install
gulp watch
change the world!
``