Files
colibre/src/pages/statistics.py
T
2025-04-21 18:09:10 +02:00

10 lines
192 B
Python

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