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

Function Example

stories/examples/ButtonGroup/Toolbar.js:4–23  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { Button, ButtonGroup, ButtonToolbar } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <ButtonToolbar>
7 <ButtonGroup className="me-2">
8 <Button color="primary">1</Button>
9 <Button color="primary">2</Button>
10 <Button color="primary">3</Button>
11 <Button color="primary">4</Button>
12 </ButtonGroup>
13 <ButtonGroup className="me-2">
14 <Button color="secondary">5</Button>
15 <Button color="secondary">6</Button>
16 <Button color="secondary">7</Button>
17 </ButtonGroup>
18 <ButtonGroup>
19 <Button color="info">8</Button>
20 </ButtonGroup>
21 </ButtonToolbar>
22 );
23}
24
25export default Example;
26

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…