kms electron
This commit is contained in:
6
src/storage/localStore.ts
Normal file
6
src/storage/localStore.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { type Writable, writable } from "svelte/store";
|
||||
import { Page } from "../consts/pages";
|
||||
import type { User } from "../types/user";
|
||||
|
||||
export const currentUser: Writable<undefined | User> = writable(undefined);
|
||||
export const currentPage = writable(Page.Login);
|
Reference in New Issue
Block a user