Skip to content

Instantly share code, notes, and snippets.

@techomoro
Created October 6, 2021 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techomoro/a14159e46a7098fa2365486064987c62 to your computer and use it in GitHub Desktop.
Save techomoro/a14159e46a7098fa2365486064987c62 to your computer and use it in GitHub Desktop.
// components/Navigation.js
import React from "react";
import { Link } from "react-router-dom";
function Navigation() {
return (
<div className="navigation">
<nav class="navbar navbar-expand navbar-dark bg-dark">
<div class="container">
<Link class="navbar-brand" to="/">
React Redux-Saga Blog
</Link>
</div>
</nav>
</div>
);
}
export default Navigation;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment