14 lines
333 B
Python
14 lines
333 B
Python
# dashboard/pages/overview.py
|
|
from dash import html, dcc
|
|
import dash
|
|
|
|
dash.register_page(__name__, path="/overview", name="Übersicht")
|
|
|
|
layout = html.Div(
|
|
className="overview-page",
|
|
children=[
|
|
dcc.Interval(id="interval-update", interval=10_000, n_intervals=0),
|
|
html.Div(id="clients-cards-container")
|
|
]
|
|
)
|