import { h } from 'preact' import { useNotifications } from '../contexts/notifications.tsx' import Message from './message.tsx' import s from './notifications.module.scss' export default function Notifications() { const { notifications } = useNotifications() return (
{notifications.map(({ id, dismiss, message, type }) => ( {message} ))}
) }