Progress Bar:
state = {
progress: 0,
}
render() {
return (
<Progress value={this.state.progress} title="Saving the details"/>
);
This is my progress bar, i want this progress bar to increase dynamically with the interval of time. Can anyone help me with that?