Example of using BrowserAnimationsModule

This commit is contained in:
Steve Sanderson
2017-08-24 15:44:56 -07:00
parent e5f1299239
commit c0c47e3def
4 changed files with 17 additions and 4 deletions

View File

@@ -2,12 +2,14 @@ import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { AppModuleShared } from './app.module.shared';
import { AppComponent } from './components/app/app.component';
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
@NgModule({
bootstrap: [ AppComponent ],
imports: [
ServerModule,
AppModuleShared
AppModuleShared,
NoopAnimationsModule
]
})
export class AppModule {