(props)
| 2 | import { Progress } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <> |
| 7 | <Progress value={2 * 5} className="my-3" /> |
| 8 | <Progress color="success" value="25" className="my-3" /> |
| 9 | <Progress color="info" value={50} className="my-3" /> |
| 10 | <Progress color="warning" value={75} className="my-3" /> |
| 11 | <Progress color="danger" value="100" className="my-3" /> |
| 12 | </> |
| 13 | ); |
| 14 | } |
| 15 | |
| 16 | export default Example; |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…