- Create modal to register when limit is past - Create modal to share the link - Use UrlManager to check if limit room is active Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com>
4 lines
157 B
TypeScript
4 lines
157 B
TypeScript
import { writable } from "svelte/store";
|
|
|
|
export const showLimitRoomModalStore = writable(false);
|
|
export const showShareLinkMapModalStore = writable(false);
|