init
This commit is contained in:
commit
90205a1243
29 changed files with 3216 additions and 0 deletions
6
src/lib/store.ts
Normal file
6
src/lib/store.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { writable } from "svelte/store";
|
||||
|
||||
import type { MeUser } from "./api/entities";
|
||||
|
||||
export const userStore = writable<MeUser | null>(null);
|
||||
export const tokenStore = writable<string | null>(null);
|
Loading…
Add table
Add a link
Reference in a new issue