Files
gpustack-ui/src/pages/playground/components/chatEmpty.tsx
T
2024-05-28 19:22:06 +08:00

16 lines
395 B
TypeScript

import Logo from '@/assets/images/logo.png';
import chatStyle from '../style/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;