UNPKG

372 BPlain TextView Raw
1import { NgModule } from '@angular/core';
2import { BrowserModule } from '@angular/platform-browser';
3import { FlashBoxComponent } from './components/flashbox/flashbox.component';
4
5@NgModule({
6 imports: [ BrowserModule ],
7 declarations: [ FlashBoxComponent ],
8 exports: [ BrowserModule, FlashBoxComponent ]
9})
10export class CommonComponentsModule { }
\No newline at end of file