Spaces:
Runtime error
Runtime error
import { Prompt } from '@/types/prompt'; | |
export interface PromptbarInitialState { | |
searchTerm: string; | |
filteredPrompts: Prompt[]; | |
} | |
export const initialState: PromptbarInitialState = { | |
searchTerm: '', | |
filteredPrompts: [], | |
}; | |