22 lines
498 B
Python
22 lines
498 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("Dashboard", font_size="3em"),
|
||
|
rx.text("Welcome to Reflex!"),
|
||
|
rx.text(
|
||
|
"You can edit this page in ",
|
||
|
rx.code("{your_app}/pages/dashboard.py"),
|
||
|
),
|
||
|
)
|