mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-20 06:34:55 +00:00
15 lines
254 B
TypeScript
15 lines
254 B
TypeScript
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;
|