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