diff --git a/web/package.json b/web/package.json
index 198eb61..55c5717 100644
--- a/web/package.json
+++ b/web/package.json
@@ -9,7 +9,9 @@
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
+ "react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
+ "styled-components": "^5.3.1",
"web-vitals": "^1.0.1"
},
"scripts": {
diff --git a/web/src/App.jsx b/web/src/App.jsx
index c3161ff..5600399 100644
--- a/web/src/App.jsx
+++ b/web/src/App.jsx
@@ -1,70 +1,27 @@
-import "./App.sass"
-
+import {
+ BrowserRouter as Router,
+ Switch,
+ Route,
+ Link
+} from "react-router-dom";
+import {CreateUserWidget, RecentActivityWidget, SystemStatusWidget} from './components'
+import {AccountManager, AdminUI, Logger} from './views'
function App() {
return (
- <>
-
-
-
-
-
Add User
-
-
Add new user
-
-
-
-
-
-
-
-
-
Recent Activity
-
-
-
-
- Name |
- Method |
- Time |
-
-
-
-
- Max Mustermann |
- RFID |
- 1.10.2020 08:30 |
-
-
-
-
-
-
System Status
-
-
Uptime: since 3days 15hours
-
LastDB Update: before 7hours
-
Last administrator login: Admin (12.9.2021 09:30)
-
-
-
- >
+