feat: playground

This commit is contained in:
jialin
2024-05-15 19:36:17 +08:00
parent 72a53424fa
commit fd9f3d8bd9
19 changed files with 380 additions and 20 deletions
@@ -0,0 +1,15 @@
import Logo from '@/assets/images/logo.png';
import chatStyle from './chat-style.less'
const ChatEmpty:React.FC = () => {
return (
<div className={chatStyle.chatEmpty}>
<div className={chatStyle.logo}>
<img src={Logo} alt="chat empty" />
</div>
<h3 className={chatStyle.tips}>How can I help you today?</h3>
</div>
);
}
export default ChatEmpty;