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

9
web_interface/src/App.js Normal file
View File

@@ -0,0 +1,9 @@
function App() {
return (
<div className="app">
<p>Hello world</p>
</div>
);
}
export default App;

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')
);