diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 0851df2..0bdfbdb 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -13,18 +13,13 @@ import { NodeService } from './demo/service/node.service'; import { PhotoService } from './demo/service/photo.service'; @NgModule({ - declarations: [ - AppComponent, NotfoundComponent - ], - imports: [ - AppRoutingModule, - AppLayoutModule - ], + declarations: [AppComponent, NotfoundComponent], + imports: [AppRoutingModule, AppLayoutModule], providers: [ { provide: LocationStrategy, useClass: PathLocationStrategy }, CountryService, CustomerService, EventService, IconService, NodeService, PhotoService, ProductService ], - bootstrap: [AppComponent] + bootstrap: [AppComponent], }) -export class AppModule { } +export class AppModule {}