21 lines
436 B
Python
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",
|
|
),
|
|
)
|