diff --git a/client/ui/App.jsx b/client/ui/App.jsx index 2c787b5..fd0d69c 100644 --- a/client/ui/App.jsx +++ b/client/ui/App.jsx @@ -1,9 +1,47 @@ +import Avatar from "./Avatar.js" import Message from "./chat/Message.js" import MessageContainer from "./chat/MessageContainer.js" +function ListItem({ title, avatar, content }) { + return ( + + {title} + + {content} + + ) +} + export default function App() { return ( -
+
+ { + // 侧边列表 + // 囊括内容: 最近, 联系人 + // 最近 对应 聊天页面 + // 联系人 对应 ??? + } + + + + {/* */} -
+
) } \ No newline at end of file