import { NgModule } from '@angular/core'; import { AlertComponent } from './alert.component'; @NgModule({ imports: [], exports: [ AlertComponent ], declarations: [AlertComponent] }) export class AlertModule { }