Etappe 5: API + Auth + WebUI — Erste Implementierung

- React-UI: Dashboard mit Stats, Geräte, Jobs
- API: /jobs und /devices endpoints
- CORS aktiviert für UI-Kommunikation
This commit is contained in:
Hitonabi
2026-07-21 16:52:30 +02:00
parent e62ff83e17
commit 4d1f613a1c
10 changed files with 405 additions and 9 deletions
+12
View File
@@ -0,0 +1,12 @@
import { useState } from 'react'
import Dashboard from './pages/Dashboard'
function App() {
return (
<div className="min-h-screen bg-gray-100">
<Dashboard />
</div>
)
}
export default App