export interface ChatListT {
    text: string;
    isUser: boolean;
    timeStamp: string;
}
