Advertisement
Guest User

Untitled

a guest
May 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. import React from 'react';
  2. import { Navbar, Form, Button, Nav} from 'react-bootstrap';
  3.  
  4. const topBar = (props) => {
  5. return(
  6. <Navbar bg="dark" variant="dark">
  7. <Navbar.Brand href="#home">
  8. {' MS Graph and ReactJS '}
  9. </Navbar.Brand>
  10. <Navbar.Collapse id="basic-navbar-nav">
  11. <Nav className="mr-auto">
  12. </Nav>
  13. <Form inline>
  14. <Button
  15. variant="outline-success"
  16. >Login</Button>
  17. </Form>
  18. </Navbar.Collapse>
  19. </Navbar>
  20. )
  21. }
  22.  
  23. export default topBar;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement