I am Trying to add Progress Bar
in React Application.
I am using Semantic CSS:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" />
From Documentation (https://semantic-ui.com/modules/progress.html#/definition), I found following sample code but unable to add/change the progress
<div class="ui green progress">
<div class="bar"></div>
</div>
What I tried:
<div class="ui green progress" dataValue="1" dataTotal="100" id="progress">
<div class="bar"></div>
</div>
But it is displaying as previous (no change).
How to add/change progress value
(it may increase/decrease in future) to the Progress Bar in ReactJS?
Adding a value
is enough to continue
Thanks in advance