Skip to content

Instantly share code, notes, and snippets.

@Reine0017
Created October 31, 2021 10:03
Show Gist options
  • Save Reine0017/68d2867368937ecee14d4271192a4147 to your computer and use it in GitHub Desktop.
Save Reine0017/68d2867368937ecee14d4271192a4147 to your computer and use it in GitHub Desktop.
Our NavBar component
import {
Link
} from "react-router-dom";
import "./NavBar.css"
function NavBar() {
return (
<div className="NavBar">
<Link to="/">Home</Link>
<Link to="/react-portal">React Portals</Link>
<Link to="/somepage">Some Page</Link>
</div>
);
}
export default NavBar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment