unpkg/client/App.js
MICHAEL JACKSON 2a0d32f214 Add /_stats endpoint
Also, remove ingest_stats worker and use the cache instead.
2017-08-22 08:52:30 -07:00

11 lines
186 B
JavaScript

import React from 'react'
import { HashRouter } from 'react-router-dom'
import Layout from './Layout'
const App = () =>
<HashRouter>
<Layout/>
</HashRouter>
export default App