Skip to content

Instantly share code, notes, and snippets.

@Joe1220
Created August 5, 2018 06:12
Show Gist options
  • Save Joe1220/a953c01e91a5407d3f011d2d2c5afe31 to your computer and use it in GitHub Desktop.
Save Joe1220/a953c01e91a5407d3f011d2d2c5afe31 to your computer and use it in GitHub Desktop.
Nav.js
import React from "react";
import { Link } from "react-router-dom";
import "./Nav.css";
const Navigation = (props, context) => (
<div className="navigation">
<div className="inner">
<Link to="/">Shopping Mall</Link>
<Link to="/cart">Cart</Link>
</div>
</div>
);
export default Navigation;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment