Skip to content

Commit ae7f2e3

Browse files
committed
import BrowserAnimationsModule in the preview
Fixes #32
1 parent b0a60b9 commit ae7f2e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/angular/preview/src/app/app.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { BrowserModule } from '@angular/platform-browser';
2+
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
33

44
import { AppComponent } from './app.component';
55
import { DocsComponent } from './docs/docs.component';
@@ -8,7 +8,7 @@ import { LazyLoadComponent } from './lazy-load/lazy-load.component';
88

99
@NgModule({
1010
declarations: [AppComponent, LazyLoadComponent, SafeHtmlPipe, DocsComponent],
11-
imports: [BrowserModule],
11+
imports: [BrowserAnimationsModule],
1212
bootstrap: [AppComponent]
1313
})
1414
export class AppModule {

0 commit comments

Comments
 (0)