123456789101112131415161718192021 |
- """The dashboard page."""
- from code.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"),
- ),
- )
|