Add very simple search support to pages, togglable with "k"

This commit is contained in:
Dane Everitt 2020-04-03 22:39:53 -07:00
parent 807cd815ea
commit 0dbf6b51b5
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
8 changed files with 216 additions and 4 deletions

9
resources/scripts/easy-peasy.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
// noinspection ES6UnusedImports
import EasyPeasy from 'easy-peasy';
import { ApplicationStore } from '@/state';
declare module 'easy-peasy' {
export function useStoreState<Result>(
mapState: (state: ApplicationStore) => Result,
): Result;
}