// noinspection ES6UnusedImports import * as Surplus from 'surplus'; import { AlertsCtrl } from './alerts-ctrl'; /** * Creates a new HTML element that will contain all alerts that are to be shown to the user. */ export function AlertsView({ctrl}: {ctrl: AlertsCtrl}): HTMLElement { return
{ctrl.alerts.mapSample((alert) => )}
; }