Update ChatResponseMessage_Thought.tsx

This commit is contained in:
Nate Kelley 2025-01-28 10:07:37 -07:00
parent 975b8dd8d9
commit b8e1270f36
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 9 additions and 2 deletions

View File

@ -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>;
}
);