Begin web interface hello world
This commit is contained in:
9
web_interface/src/App.js
Normal file
9
web_interface/src/App.js
Normal file
@@ -0,0 +1,9 @@
|
||||
function App() {
|
||||
return (
|
||||
<div className="app">
|
||||
<p>Hello world</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
10
web_interface/src/index.js
Normal file
10
web_interface/src/index.js
Normal 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')
|
||||
);
|
Reference in New Issue
Block a user