mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-20 06:34:55 +00:00
Integrate Chat and Copilot into chat-sdk, and add SQL parse display (#166)
This commit is contained in:
14
webapp/packages/chat-sdk/src/demo/ChatDemo.tsx
Normal file
14
webapp/packages/chat-sdk/src/demo/ChatDemo.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import Chat from '../Chat';
|
||||
import styles from './style.module.less';
|
||||
|
||||
type Props = {};
|
||||
|
||||
const ChatDemo: React.FC<Props> = ({}) => {
|
||||
return (
|
||||
<div className={styles.chatDemo}>
|
||||
<Chat isDeveloper />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ChatDemo;
|
||||
Reference in New Issue
Block a user