Spaces:
Runtime error
Runtime error
File size: 234 Bytes
a28cd69 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import { Prompt } from '@/types/prompt';
export interface PromptbarInitialState {
searchTerm: string;
filteredPrompts: Prompt[];
}
export const initialState: PromptbarInitialState = {
searchTerm: '',
filteredPrompts: [],
};
|