Skip to content

Instantly share code, notes, and snippets.

@tararoutray
Created October 18, 2022 02:28
Show Gist options
  • Save tararoutray/d35ba4413928f96d38bb39e6fe8eb71c to your computer and use it in GitHub Desktop.
Save tararoutray/d35ba4413928f96d38bb39e6fe8eb71c to your computer and use it in GitHub Desktop.
import React from "react";
import Container from 'react-bootstrap/Container';
import Nav from 'react-bootstrap/Nav';
import Navbar from 'react-bootstrap/Navbar';
const AuthNavbar = () => {
return (
<React.Fragment>
<Navbar bg="dark" expand="lg" className="navbar-dark">
<Container>
<Navbar.Brand>React Auth Demo</Navbar.Brand>
</Container>
</Navbar>
</React.Fragment>
);
}
export default AuthNavbar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment