@reach. router code example
Example 1: @reach/router
import React from "react"
import { render } from "react-dom"
import { Router, Link } from "@reach/router"
let Home = () => <div>Home</div>
let Dash = () => <div>Dash</div>
render(
<Router>
<Home path="/" />
<Dash path="dashboard" />
</Router>
)
Example 2: @reach/router
const Dash = ({ children }) => (
<div>
<h1>Dashboard</h1>
<hr />
{children}
</div>
)
render(
<Router>
<Home path="/" />
<Dash path="dashboard">
<Invoices path="invoices" />
<Team path="team" />
</Dash>
</Router>
)