feat(web): better search bar (#2062)

This commit is contained in:
Alex
2023-03-23 17:57:49 -05:00
committed by GitHub
parent 40832f0ea7
commit 4bf50a0b46
2 changed files with 83 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
import { writable } from 'svelte/store';
import { persisted } from 'svelte-local-storage-store';
export const enableClip = writable<boolean>(false);
export const savedSearchTerms = persisted<string[]>('search-terms', [], {});