Files
reflex-ipad/reflex_ipad/pages/meds.py
2024-01-04 09:02:44 +01:00

21 lines
436 B
Python

"""The meds page."""
from reflex_ipad.templates import template
import reflex as rx
@template(route="/medicine", title="Medikamente")
def dashboard() -> rx.Component:
"""The dashboard page.
Returns:
The UI for the dashboard page.
"""
return rx.vstack(
rx.heading("Medikamente", font_size="3em"),
rx.text("Heute schon genommen?"),
rx.text(
"Scan the Med",
),
)