DUET / src /lib /stores /errors.ts
unbrandedhuman's picture
Upload 83 files
1e95ed5
raw
history blame contribute delete
171 Bytes
import { writable } from "svelte/store";
export const ERROR_MESSAGES = {
default: "Oops, something went wrong.",
};
export const error = writable<string | null>(null);