Spaces:
Runtime error
Runtime error
File size: 252 Bytes
13095e0 |
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: [],
};
|