import * as React from 'react'; import { NotificationComponent } from './notification-component'; import { NotificationCenterComponent as TheiaNotificationCenterComponent } from '@theia/messages/lib/browser/notification-center-component'; const PerfectScrollbar = require('react-perfect-scrollbar'); export class NotificationCenterComponent extends TheiaNotificationCenterComponent { render(): React.ReactNode { const empty = this.state.notifications.length === 0; const title = empty ? 'NO NEW NOTIFICATIONS' : 'NOTIFICATIONS'; return (
{title}
{this.state.notifications.map((notification) => ( ))}
); } }