12 lines
239 B
Python
12 lines
239 B
Python
# 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"),
|
|
]
|
|
) |