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/c3afb5160b84222c05f14583f65b4931 to your computer and use it in GitHub Desktop.
Save marshallmurphy/c3afb5160b84222c05f14583f65b4931 to your computer and use it in GitHub Desktop.
// App.js
import React from 'react';
import { Router } from "@reach/router";
import Main from './Main';
import SplitThis from './SplitThis';
import './App.css';
const App = () => (
<div className="App">
<Router>
<Main default path="/" />
<SplitThis path="/split" />
</Router>
</div>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment