radames's picture
first
142f91b unverified
raw
history blame
142 Bytes
import { writable } from 'svelte/store';
export const loadingState = writable<string>('');
export const isLoading = writable<boolean>(false);