This commit is contained in:
David Ralph
2019-09-25 18:03:02 +01:00
parent 5cd96e6d10
commit 8b809d6f7f
113 changed files with 783 additions and 2597 deletions

17
src/index.js Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App.jsx';
import * as serviceWorker from './serviceWorker';
//import './i18n.jsx';
ReactDOM.render(
<App />,
document.getElementById('root')
);
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
// Was unregister(), now register() - Derpy
serviceWorker.register();