import React from 'react'; import NavbarLi from './NavbarLi'; import 'bootstrap/dist/css/bootstrap.min.css'; class Navbar extends React.Component { constructor(props) { super(props) this.state = { navbarLinks:[ {navTitle: 'Home' , href: 'home',id:1}, {navTitle: 'Blog' , href: 'blog', id:2}, {navTitle: 'Contact Us', navTitle: 'contact', id:3}, {navTitle: 'About', navTitle: 'about',id:60} ] } } render(){ return( ) } } export default Navbar