# -*- coding: utf-8 -*-
"""
应用主入口
import reflex as rx
from application.pages.index import index_page
app = rx.App() # 此处变量名需使用 app ,具体原因目前尚不清楚
# 注册首页路由
app.add_page(component=index_page, route="/")