Add historian persistence and dashboard trend charts

This commit is contained in:
litoral05
2026-05-20 17:27:54 +01:00
parent 9fcf67c7ae
commit a30d41d031
16 changed files with 1304 additions and 48 deletions
+4 -1
View File
@@ -1,9 +1,12 @@
import { AppShell } from "../components/layout/AppShell";
import { DashboardPage } from "../features/dashboard/pages/DashboardPage";
function App() {
return (
<AppShell>
<div />
{({ theme}) => (
<DashboardPage theme={theme} />
)}
</AppShell>
);
}