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