2017-08-07 21:06:41 +02:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
|
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
|
import { AppComponent } from './app.component';
|
2017-08-09 13:41:32 +02:00
|
|
|
import { GalleryModule } from "./gallery/gallery.module";
|
2017-08-07 21:06:41 +02:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
declarations: [
|
|
|
|
|
AppComponent
|
|
|
|
|
],
|
|
|
|
|
imports: [
|
2017-08-09 13:41:32 +02:00
|
|
|
BrowserModule.withServerTransition({
|
|
|
|
|
appId: 'angullary'
|
|
|
|
|
}),
|
|
|
|
|
AppRoutingModule,
|
|
|
|
|
GalleryModule,
|
2017-08-07 21:06:41 +02:00
|
|
|
],
|
|
|
|
|
providers: [],
|
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
|
})
|
2017-08-09 13:41:32 +02:00
|
|
|
export class AppModule {
|
|
|
|
|
}
|