// ToastOverlay -- transient confirmations float above the input bar (bottom- // right) and auto-dismiss after a few seconds. Never shown in the chat area. import { Show, For } from "solid-js"; import { palette } from "../theme.ts"; import { toasts } from "../store.ts"; const ui = palette("loom"); export function ToastOverlay() { const list = () => toasts().slice(-3); return ( 0}> {(t) => ( {" " + t.text} )} ); }