7 lines
262 B
TypeScript
7 lines
262 B
TypeScript
const ChatHistory = () => (
|
|
<div className="h-full flex items-center justify-center text-neutral-400 text-center">
|
|
<div><div className="text-lg mb-1">对话记录</div><div className="text-sm">开发中...</div></div>
|
|
</div>
|
|
)
|
|
export default ChatHistory
|