import { useMapStore } from '../stores/mapStore' const TYPE_STYLES = { info: 'border-gruvbox-blue text-gruvbox-blue', success: 'border-gruvbox-green text-gruvbox-green', error: 'border-gruvbox-red text-gruvbox-red', warning: 'border-gruvbox-yellow text-gruvbox-yellow', } export default function ToastContainer() { const toasts = useMapStore((s) => s.toasts) const removeToast = useMapStore((s) => s.removeToast) if (toasts.length === 0) return null return (
{toasts.map((toast) => (
{toast.message}
))}
) }