mirror of
https://github.com/cupcakearmy/ora.git
synced 2026-04-02 12:05:23 +00:00
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
import { writable } from 'svelte/store'
|
|
|
|
export const toasts = writable([])
|
|
|
|
export function notify(message, type = 'success') {
|
|
toasts.update((toasts) => [...toasts, { message, type }])
|
|
}
|