MCPcopy Create free account
hub / github.com/reactstrap/reactstrap / Example

Function Example

stories/examples/Progress/Color.js:4–14  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { Progress } from 'reactstrap';
3
4function 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
16export default Example;
17

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…