import { h } from 'preact'; import { useStore } from '@nanostores/preact'; import { $toasts } from '../stores/toastStore'; export default function ToastContainer() { const toasts = useStore($toasts); return (
{toasts.map((toast) => (
{toast.message}
))}
); }