Skip to content
Snippets Groups Projects
alert.module.ts 224 B
Newer Older
  • Learn to ignore specific revisions
  • import { NgModule } from '@angular/core';
    import { AlertComponent } from './alert.component';
    
    @NgModule({
      imports: [],
      exports: [
        AlertComponent
      ],
      declarations: [AlertComponent]
    })
    export class AlertModule { }