Added some basic shared components, utils, hooks

This commit is contained in:
ireic
2019-12-08 03:49:49 +01:00
parent 6be3ac2e77
commit 3143f66a0f
82 changed files with 40121 additions and 5 deletions

7
client/src/index.jsx Normal file → Executable file
View File

@@ -1,5 +1,8 @@
import React from 'react';
import 'core-js/stable';
import React from 'react';
import ReactDOM from 'react-dom';
ReactDOM.render(<h1>YOOOOOOOOOO</h1>, document.getElementById('root'));
import App from 'components/App/App';
ReactDOM.render(<App />, document.getElementById('root'));