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