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

Function Example

stories/examples/Nav/Pills.js:4–25  ·  view source on GitHub ↗
(props)

Source from the content-addressed store, hash-verified

2import { Nav, NavItem, NavLink } from 'reactstrap';
3
4function Example(props) {
5 return (
6 <Nav pills>
7 <NavItem>
8 <NavLink href="#" active>
9 Link
10 </NavLink>
11 </NavItem>
12 <NavItem>
13 <NavLink href="#">Link</NavLink>
14 </NavItem>
15 <NavItem>
16 <NavLink href="#">Another Link</NavLink>
17 </NavItem>
18 <NavItem>
19 <NavLink disabled href="#">
20 Disabled Link
21 </NavLink>
22 </NavItem>
23 </Nav>
24 );
25}
26
27export default Example;
28

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…