# -*- coding: utf-8 -*- """ 主模块 """ import reflex from .pages.index import index app = reflex.App() app.add_page(index)