Enabling back the open report feature

This commit is contained in:
David Négrier 2021-06-15 15:16:01 +02:00
parent ca56a78814
commit 76261de805
3 changed files with 24 additions and 2 deletions

View file

@ -0,0 +1,3 @@
import {writable} from "svelte/store";
export const showReportScreenStore = writable<{userId: number, userName: string}|null>(null);