starchat-ui / components /Chatbar /Chatbar.state.tsx
matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame
252 Bytes
import { Conversation } from '@/types/chat';
export interface ChatbarInitialState {
searchTerm: string;
filteredConversations: Conversation[];
}
export const initialState: ChatbarInitialState = {
searchTerm: '',
filteredConversations: [],
};