Spaces:
Paused
Paused
File size: 234 Bytes
3861128 |
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: [],
};
|