reflex/reflex/.templates/apps/sidebar/code/pages/index.py
2024-04-02 11:48:34 -07:00

19 lines
415 B
Python

"""The home page of the app."""
from code import styles
from code.templates import template
import reflex as rx
@template(route="/", title="Home")
def index() -> rx.Component:
"""The home page.
Returns:
The UI for the home page.
"""
with open("README.md", encoding="utf-8") as readme:
content = readme.read()
return rx.markdown(content, component_map=styles.markdown_style)