0.0.4 • Published 8 years ago

react-router-navtab v0.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

React Router Navtab

A wrapper of the Link tab in React Router to make navigation bar have an active style. See the detail: https://zc1415926.github.io/react-router-navtab/

##You can use it easily

npm install --save react-router-navtab

//and import it
var NavTab = require('react-router-navtab');

//then use it in a Bootstrap navigation bar
<ul className="nav navbar-nav">
    <NavTab to="/">Home</NavTab>
</ul>

##Extends the Link tab of the React Router It only can genterate an a tab, using the Link tab built in React Router.

//use a Link in React
<Link to="/">Home</Link>

//an a tab you can get
<a href="/">Home</a>

To make navigation tab(button) be actived, there should be a li tab on the outside of the a tab, when coding a navigation bar of the website using Bootstrap.

//You need a li tab with a "active" to active navigation tab
<li class="active">
    <a href="/">Home</a>
</li>

Put li tab outside every Link tab?

<li className="active">
    <Link to="/">Home</Link>
</li>

No, We wrap it!

Then you can build a navigation bar using React Router Navtab.

##Reference I build the React Router Navtab refer to the Nav Link Wrappers.

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago