Created
September 16, 2019 18:37
-
-
Save igmrrf/f619306185eac733ea3f661f01e173f9 to your computer and use it in GitHub Desktop.
For Components
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import { Navbar, Nav, Button, Form} from 'react-bootstrap'; | |
| import { NavLink } from "react-router-dom" | |
| const Header = () => { | |
| return( | |
| <Navbar className='transh' expand="lg"> | |
| <Navbar.Brand className='f3'><h1>KnowAfrica</h1></Navbar.Brand> | |
| <Navbar.Toggle aria-controls="basic-navbar-nav" /> | |
| <Navbar.Collapse id="basic-navbar-nav"> | |
| <Nav className="mr-auto"> | |
| </Nav> | |
| <Form inline> | |
| <NavLink to="/" className="header"><strong>Home</strong></NavLink> | |
| <p className="header"><strong>Categories</strong></p> | |
| <p className="header"><strong>Leaderboard</strong></p> | |
| <p className="header"><strong>Richard</strong></p> | |
| <Button className='buth' variant='outline-primary'></Button> | |
| </Form> | |
| </Navbar.Collapse> | |
| </Navbar> | |
| ) | |
| } | |
| export default Header; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment