starchat-ui / components /Promptbar /Promptbar.state.tsx
matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame
234 Bytes
import { Prompt } from '@/types/prompt';
export interface PromptbarInitialState {
searchTerm: string;
filteredPrompts: Prompt[];
}
export const initialState: PromptbarInitialState = {
searchTerm: '',
filteredPrompts: [],
};