BlurMe/blurme/pages/dashboard.py

18 lines
402 B
Python
Raw Normal View History

"""The dashboard page."""
from blurme.templates import template
import reflex as rx
@template(route="/dashboard", title="Dashboard")
def dashboard() -> rx.Component:
"""The dashboard page.
Returns:
The UI for the dashboard page.
"""
2023-11-17 16:33:22 +01:00
#return rx.vstack(
# rx.heading("BlurMe", font_size="3em"),
# rx.text("Dodaj zdjęcia, które chcesz zanonimizować!"),
#)