import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from '../shared.module';
import { NotificationService } from './notification.service';
import { NotificationComponent } from './notification.component';
import { NotificationBellComponent } from './notification-bell.component';
@NgModule({
imports: [CommonModule, SharedModule],
declarations: [NotificationComponent,NotificationBellComponent],
exports: [NotificationComponent,NotificationBellComponent],
providers: [NotificationService]
})
export class NotificationModule { }
(index):47 Error: (SystemJS) Unexpected value 'undefined' imported by the module 'NotificationModule'
. Что-то не так с модулем (или его содержимым). Но ваш пример то работает