Skip to content

Instantly share code, notes, and snippets.

@marshallmurphy
Created August 17, 2020 00:49
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 marshallmurphy/4b55ae404b4189cad6e2cefd0c1e2dd9 to your computer and use it in GitHub Desktop.
Save marshallmurphy/4b55ae404b4189cad6e2cefd0c1e2dd9 to your computer and use it in GitHub Desktop.
// Main.js
import React from 'react';
import { Link } from '@reach/router';
import logo from './logo.svg';
import './App.css';
const Main = () => (
<header className="App-header">
<Link to="/split">
<img src={logo} className="App-logo" alt="logo" />
</Link>
...
</header>
);
export default Main;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment