import * as React from '@theia/core/shared/react'; import { NotificationComponent } from './notification-component'; import { NotificationToastsComponent as TheiaNotificationToastsComponent } from '@theia/messages/lib/browser/notification-toasts-component'; export class NotificationToastsComponent extends TheiaNotificationToastsComponent { override render(): React.ReactNode { return (
{this.state.toasts.map((notification) => ( ))}
); } }