Skip to content

Instantly share code, notes, and snippets.

@Joe1220
Created August 5, 2018 06:04
Show Gist options
  • Save Joe1220/5be02e6e7511ca9e55010c3349926f9b to your computer and use it in GitHub Desktop.
Save Joe1220/5be02e6e7511ca9e55010c3349926f9b to your computer and use it in GitHub Desktop.
Nav.js
import React from "react";
import PropTypes from "prop-types";
import Ionicon from "react-ionicons";
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