Python/产品需求文档AI生成/application/pages/index.py

24 lines
599 B
Python

# -*- coding: utf-8 -*-
"""
会话页面
"""
import reflex as rx
from ..components.navbar import navbar_component
from ..components.chat import dialog_list_component, input_component
def index_page() -> rx.Component:
"""根页面"""
return rx.vstack(
navbar_component(), # 导航栏组件
dialog_list_component(), # 对话列表组件
input_component(), # 输入组件
color=rx.color(color="mauve", shade=12),
background_color=rx.color(color="mauve", shade=1),
height="100dvh",
align_items="stretch",
spacing="0",
)