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
- Host: GitHub
- URL: https://github.com/deadcoder0904/react-bootstrap-navbar
- Owner: deadcoder0904
- Created: 2016-06-04T10:20:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-23T13:15:14.000Z (about 8 years ago)
- Last Synced: 2025-01-14T13:17:53.527Z (about 1 year ago)
- Language: JavaScript
- Size: 209 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
