ChatTestPage.tsx 374 B

12345678910111213141516171819
  1. /**
  2. * ChatInterface 测试页面
  3. */
  4. import React from 'react';
  5. import { ChatInterface } from '@/components/chat-client-integration/ChatInterface';
  6. const ChatTestPage: React.FC = () => {
  7. return (
  8. <div style={{ height: '100vh' }}>
  9. <ChatInterface
  10. appId="test-app-001"
  11. chatMode="LOCAL"
  12. />
  13. </div>
  14. );
  15. };
  16. export default ChatTestPage;