Spaces:
Paused
Paused
import { Conversation } from '@/types/chat'; | |
export interface ChatbarInitialState { | |
searchTerm: string; | |
filteredConversations: Conversation[]; | |
} | |
export const initialState: ChatbarInitialState = { | |
searchTerm: '', | |
filteredConversations: [], | |
}; | |