18 lines
402 B
Python
18 lines
402 B
Python
"""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.
|
|
"""
|
|
#return rx.vstack(
|
|
# rx.heading("BlurMe", font_size="3em"),
|
|
# rx.text("Dodaj zdjęcia, które chcesz zanonimizować!"),
|
|
#)
|