gsaivinay's picture
Duplicate from matthoffner/starchat-ui
a28cd69
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: [],
};