23 lines
491 B
Python
23 lines
491 B
Python
"""The settings page."""
|
|
|
|
from blurme.templates import template
|
|
|
|
import reflex as rx
|
|
|
|
|
|
@template(route="/settings", title="Settings")
|
|
def settings() -> rx.Component:
|
|
"""The settings page.
|
|
|
|
Returns:
|
|
The UI for the settings page.
|
|
"""
|
|
return rx.vstack(
|
|
rx.heading("Settings", font_size="3em"),
|
|
rx.text("Welcome to Reflex!"),
|
|
rx.text(
|
|
"You can edit this page in ",
|
|
rx.code("{your_app}/pages/settings.py"),
|
|
),
|
|
)
|