gsaivinay's picture
Duplicate from matthoffner/starchat-ui
a28cd69
raw
history blame
252 Bytes
import { Conversation } from '@/types/chat';
export interface ChatbarInitialState {
searchTerm: string;
filteredConversations: Conversation[];
}
export const initialState: ChatbarInitialState = {
searchTerm: '',
filteredConversations: [],
};