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

Function Example

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

Source from the content-addressed store, hash-verified

2import { Progress } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <div>
7 <Progress striped value={2 * 5} className="my-3" />
8 <Progress striped color="success" value="25" className="my-3" />
9 <Progress striped color="info" value={50} className="my-3" />
10 <Progress striped color="warning" value={75} className="my-3" />
11 <Progress striped color="danger" value="100" className="my-3" />
12 <Progress multi>
13 <Progress striped bar value="10" />
14 <Progress striped bar color="success" value="30" />
15 <Progress striped bar color="warning" value="20" />
16 <Progress striped bar color="danger" value="20" />
17 </Progress>
18 </div>
19 );
20}
21
22export default Example;
23

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…