Skip to content

Instantly share code, notes, and snippets.

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