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 (
{ // 侧边列表 // 囊括内容: 最近, 联系人 // 最近 对应 聊天页面 // 联系人 对应 ??? } {/* Test Test */}
) }