Spaces:
Running
on
Inf2
Running
on
Inf2
File size: 256 Bytes
7bf1507 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { writable } from "svelte/store";
function createShareModalStore() {
const { subscribe, set } = writable(false);
return {
subscribe,
open: () => set(true),
close: () => set(false),
};
}
export const shareModal = createShareModalStore();
|