Finetuning prove of concept for the dashboard

This commit is contained in:
2025-06-08 12:03:13 +00:00
parent 628a3b1fe9
commit e3c9d1b19b
4 changed files with 49 additions and 10 deletions

View File

@@ -0,0 +1,12 @@
# dashboard/pages/clients.py
from dash import html, dcc
import dash
dash.register_page(__name__, path="/clients", name="Bildschirme")
layout = html.Div(
className="clients-page",
children=[
html.H3("Bildschirme"),
]
)