1
This commit is contained in:
10
src/components/bs-comp/chatComponent/index.tsx
Normal file
10
src/components/bs-comp/chatComponent/index.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import ChatInput from "./ChatInput";
|
||||
import MessagePanne from "./MessagePanne";
|
||||
|
||||
export default function ChatComponent({ clear = false, questions = [], form = false, useName, inputForm = null, guideWord, wsUrl, onBeforSend, loadMore = () => { } }) {
|
||||
|
||||
return <div className="relative h-full">
|
||||
<MessagePanne useName={useName} guideWord={guideWord} loadMore={loadMore}></MessagePanne>
|
||||
<ChatInput clear={clear} questions={questions} form={form} wsUrl={wsUrl} inputForm={inputForm} onBeforSend={onBeforSend} ></ChatInput>
|
||||
</div>
|
||||
};
|
||||
Reference in New Issue
Block a user