Files
ragflow/web/src/pages/chat/share/index.tsx
balibabu c6c9dbde64 feat: Support for conversational streaming (#809)
### What problem does this PR solve?

feat: Support for conversational streaming
#709

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2024-05-16 20:15:02 +08:00

14 lines
238 B
TypeScript

import ChatContainer from './large';
import styles from './index.less';
const SharedChat = () => {
return (
<div className={styles.chatWrapper}>
<ChatContainer></ChatContainer>
</div>
);
};
export default SharedChat;