gallery-frontend/src/app/app.module.ts

26 lines
634 B
TypeScript
Raw Normal View History

import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from "@angular/platform-browser/animations"
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";
@NgModule({
declarations: [
AppComponent
],
imports: [
2017-08-09 13:41:32 +02:00
BrowserModule.withServerTransition({
appId: 'angullary'
}),
BrowserAnimationsModule,
2017-08-09 13:41:32 +02:00
AppRoutingModule,
GalleryModule,
],
providers: [],
bootstrap: [AppComponent]
})
2017-08-09 13:41:32 +02:00
export class AppModule {
}