mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-15 16:27:26 +02:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
import { writable } from 'svelte/store';
|
|
|
|
export const isLoading = writable(false);
|
|
|
|
export const showIsLoading = () => {
|
|
isLoading.set(true);
|
|
};
|
|
|
|
export const hideIsLoading = () => {
|
|
isLoading.set(false);
|
|
};
|