Files
colibre/src/pages/statistics.py
T
2025-06-03 14:40:41 +02:00

10 lines
192 B
Python

from dash import html, register_page
title = "Statistiques"
register_page(
__name__, path="/statistiques", title=f"decp.info - {title}", name=title, order=2
)
layout = [html.H2(title)]