An open API service indexing awesome lists of open source software.

https://github.com/deadcoder0904/react-bootstrap-navbar

Simple Reusable React + Bootstrap Navbar
https://github.com/deadcoder0904/react-bootstrap-navbar

Last synced: 12 months ago
JSON representation

Simple Reusable React + Bootstrap Navbar

Awesome Lists containing this project

README

          

#react-bootstrap-navbar
Reusable React Bootstrap Navbar

#Usage

Declare an ```items``` array with property ```title``` & ```href``` & optional property ```color```

```
var items = [
{
title: "HOME",
href: "#",
color: "#D7E80B"
},
{
title: "CONTACT",
href: "#",
color: "#0BE8C3"
},
{
title: "ABOUT",
href: "#",
color: "#0BA0E8"
}
];

```

#Default Value
```

color : "#9d9d9d"

```

Declare ```< Navbar /> ``` Component by passing ``` items ``` array declared above & optional properties
``` navBorder ``` & ``` brandColor ```

```

```

#Default Values
```

navColor : "#101010",
navBorder : "#080808",
brandColor : "#9d9d9d"

```

#Images

React Bootstrap Navbar

![alt tag](http://imgur.com/jeMSGXQ.png)