feat: enhance chat message handling; add createdAt timestamp to messages and implement dynamic component rendering for various chat types

This commit is contained in:
2025-09-04 16:22:26 +02:00
parent 8d7ff6f3a2
commit c665f5ea3d
7 changed files with 128 additions and 88 deletions

View File

@@ -48,6 +48,7 @@ export interface ChatMessage {
type: ChatType
state: ChatState
fetchStates?: ChatFetchState[]
createdAt: Date
}
export const ChatMessages = [