mirror of https://github.com/buster-so/buster.git
Update ChatResponseMessage_Thought.tsx
This commit is contained in:
parent
975b8dd8d9
commit
b8e1270f36
|
@ -1,9 +1,16 @@
|
|||
import { BusterChatMessageResponse } from '@/api/buster_socket/chats';
|
||||
import { BusterChatMessage_thought, BusterChatMessageResponse } from '@/api/buster_socket/chats';
|
||||
import React from 'react';
|
||||
import { ChatResponseMessageProps } from './ChatResponseMessages';
|
||||
import { AnimatePresence, motion } from 'framer-motion';
|
||||
import { animationConfig } from './animationConfig';
|
||||
import { CircleSpinnerLoader } from '@/components/loaders/CircleSpinnerLoader';
|
||||
import { Text } from '@/components/text';
|
||||
|
||||
export const ChatResponseMessage_Thought: React.FC<ChatResponseMessageProps> = React.memo(
|
||||
({ responseMessage }) => {
|
||||
({ responseMessage: responseMessageProp }) => {
|
||||
const responseMessage = responseMessageProp as BusterChatMessage_thought;
|
||||
const { thought_title, thought_secondary_title, thought_pill, in_progress } = responseMessage;
|
||||
|
||||
return <div>ChatResponseMessage_Thought</div>;
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue