New HTTPServer rework, an actual dashboard (that isn't functional)

This commit is contained in:
Benjamin Elsdon
2022-05-02 20:50:02 +08:00
Unverified
parent a4da87c81b
commit 191704b39b
21 changed files with 361 additions and 205 deletions
+2 -17
View File
@@ -1,24 +1,9 @@
import logo from './logo.svg';
import './App.css';
import Dashboard from './Dashboard';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
<Dashboard />
);
}