How do I select certain bars in react.js?
This is my code:
var Progressbar = React.createClass({ getInitialState: function () { return {
You can replace
document.getElementById(this.state.baction).addPrecent(10);
with
this.refs[this.state.baction].addPrecent(10);