(props)
| 9 | } from 'reactstrap'; |
| 10 | |
| 11 | function Example(props) { |
| 12 | return ( |
| 13 | <ButtonGroup className="my-2"> |
| 14 | <Button color="secondary">Left</Button> |
| 15 | <Button color="secondary">Middle</Button> |
| 16 | <ButtonGroup> |
| 17 | <UncontrolledDropdown> |
| 18 | <DropdownToggle caret>Dropdown</DropdownToggle> |
| 19 | <DropdownMenu> |
| 20 | <DropdownItem header>Header</DropdownItem> |
| 21 | <DropdownItem disabled>Action</DropdownItem> |
| 22 | <DropdownItem>Another Action</DropdownItem> |
| 23 | <DropdownItem divider /> |
| 24 | <DropdownItem>Another Action</DropdownItem> |
| 25 | </DropdownMenu> |
| 26 | </UncontrolledDropdown> |
| 27 | </ButtonGroup> |
| 28 | </ButtonGroup> |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | export default Example; |
| 33 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…