(props)
| 2 | import { Breadcrumb, BreadcrumbItem } from 'reactstrap'; |
| 3 | |
| 4 | function Example(props) { |
| 5 | return ( |
| 6 | <Breadcrumb tag="nav" listTag="div"> |
| 7 | <BreadcrumbItem tag="a" href="#"> |
| 8 | Home |
| 9 | </BreadcrumbItem> |
| 10 | <BreadcrumbItem tag="a" href="#"> |
| 11 | Library |
| 12 | </BreadcrumbItem> |
| 13 | <BreadcrumbItem tag="a" href="#"> |
| 14 | Data |
| 15 | </BreadcrumbItem> |
| 16 | <BreadcrumbItem active tag="span"> |
| 17 | Bootstrap |
| 18 | </BreadcrumbItem> |
| 19 | </Breadcrumb> |
| 20 | ); |
| 21 | } |
| 22 | |
| 23 | export default Example; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…