adds trail edit
This commit is contained in:
10
web/src/lib/stores/toast_store.ts
Normal file
10
web/src/lib/stores/toast_store.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { writable, type Writable } from "svelte/store";
|
||||
|
||||
export type Toast = {
|
||||
type: "info" | "success" | "warning" | "error"
|
||||
icon: string;
|
||||
text: string;
|
||||
}
|
||||
|
||||
|
||||
export const toast: Writable<Toast> = writable();
|
||||
Reference in New Issue
Block a user