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

Function Example

stories/examples/Nav/Navs.js:4–22  ·  view source on GitHub ↗
(args)

Source from the content-addressed store, hash-verified

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

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…