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