From 7d407d02ca3fb1009dcf9fb92148f6a45610506e Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sat, 6 Sep 2025 01:51:15 +0800 Subject: [PATCH] ui: move ChatFragment implmention --- client/ui/chat/ChatFragment.jsx | 63 ++++++++++++++++++++++++++++++++- 1 file changed, 62 insertions(+), 1 deletion(-) diff --git a/client/ui/chat/ChatFragment.jsx b/client/ui/chat/ChatFragment.jsx index e92ea04..15b1ee7 100644 --- a/client/ui/chat/ChatFragment.jsx +++ b/client/ui/chat/ChatFragment.jsx @@ -1,3 +1,64 @@ -export default function ChatFragment() { +import Message from "./Message.jsx" +import MessageContainer from "./MessageContainer.jsx" +export default function ChatFragment() { + return ( +
+ + + Title + + +
+
+ 加載更多 +
+ + + Test + + + { + // 输入框 + } +
+ + + +
+
+
+ ) }