Spaces:
Paused
Paused
File size: 252 Bytes
3861128 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { Conversation } from '@/types/chat';
export interface ChatbarInitialState {
searchTerm: string;
filteredConversations: Conversation[];
}
export const initialState: ChatbarInitialState = {
searchTerm: '',
filteredConversations: [],
};
|