Begin web interface hello world

This commit is contained in:
2021-04-25 23:43:55 +00:00
parent a49caaedf5
commit 963b3d9736
6 changed files with 11522 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);