Guest User

Untitled

a guest
Mar 17th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. import { BrowserModule } from '@angular/platform-browser';
  2. import { NgModule } from '@angular/core';
  3.  
  4. import { AppComponent } from './app.component';
  5. import { NgxFizzBuzzModule } from './modules/ngx-fizz-buzz/ngx-fizz-buzz.module';
  6.  
  7. @NgModule({
  8. declarations: [AppComponent],
  9. imports: [BrowserModule, NgxFizzBuzzModule],
  10. providers: [],
  11. bootstrap: [AppComponent]
  12. })
  13. export class AppModule {}
Add Comment
Please, Sign In to add comment