ditching TachiWeb-React and starting anew

This commit is contained in:
Aria Moradi
2020-12-24 02:37:23 +03:30
parent 94f6a53be7
commit c71cf587c4
19 changed files with 11694 additions and 2 deletions

17
webUI/react/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';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();