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

Function Example

stories/examples/Nav/Vertical.js:4–23  ·  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 vertical>
7 <NavItem>
8 <NavLink href="#">Link</NavLink>
9 </NavItem>
10 <NavItem>
11 <NavLink href="#">Link</NavLink>
12 </NavItem>
13 <NavItem>
14 <NavLink href="#">Another Link</NavLink>
15 </NavItem>
16 <NavItem>
17 <NavLink disabled href="#">
18 Disabled Link
19 </NavLink>
20 </NavItem>
21 </Nav>
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…