Skip to content

Commit 3076e82

Browse files
Extended Component Library Teamcopybara-github
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 802349001
1 parent ba66e9c commit 3076e82

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// g3-format-prettier
2+
import {provideZoneChangeDetection} from '@angular/core';
13
/**
24
* @license
35
* Copyright 2023 Google LLC
@@ -9,12 +11,14 @@ import {BrowserModule} from '@angular/platform-browser';
911

1012
import {AppComponent} from './app.component';
1113

14+
@NgModule({providers: [provideZoneChangeDetection()]})
15+
export class ZoneChangeDetectionModule {}
16+
1217
@NgModule({
1318
declarations: [AppComponent],
14-
imports: [BrowserModule],
19+
imports: [ZoneChangeDetectionModule, BrowserModule],
1520
providers: [],
1621
bootstrap: [AppComponent],
17-
schemas: [CUSTOM_ELEMENTS_SCHEMA]
22+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
1823
})
19-
export class AppModule {
20-
}
24+
export class AppModule {}

0 commit comments

Comments
 (0)