score:1

you can re-render the component again on clientside something like this:

document.onreadystatechange = function () {
    if (document.readystate == "complete") {
        react.render(<requestview /> ,
            document.getelementbyid('reactmount')
        );
    }
}

with

componentdidmount: function(){
     if(window){
          var context = document.getelementbyid('chartid').getcontext('2d');
          var chart = new chart(ctx).pie(data);
     }
},

Related Query

More Query from same tag