Added frontend

This commit is contained in:
maciejhirsz
2018-06-27 11:06:47 +02:00
parent 003ed008e9
commit 73f5309343
20 changed files with 15286 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import App from './App';
import './index.css';
import registerServiceWorker from './registerServiceWorker';
ReactDOM.render(
<App />,
document.getElementById('root') as HTMLElement
);
registerServiceWorker();