Skip to content

Commit b8d1f07

Browse files
Extended Component Library Teamcopybara-github
authored andcommitted
chore: automated code change
PiperOrigin-RevId: 803068091
1 parent 70aff8d commit b8d1f07

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

examples/angular_sample_app/src/app/app.module.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,20 @@
44
* SPDX-License-Identifier: Apache-2.0
55
*/
66

7-
import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
7+
import {
8+
CUSTOM_ELEMENTS_SCHEMA,
9+
NgModule,
10+
provideZoneChangeDetection,
11+
} from '@angular/core';
812
import {BrowserModule} from '@angular/platform-browser';
913

1014
import {AppComponent} from './app.component';
1115

1216
@NgModule({
1317
declarations: [AppComponent],
1418
imports: [BrowserModule],
15-
providers: [],
19+
providers: [provideZoneChangeDetection()],
1620
bootstrap: [AppComponent],
17-
schemas: [CUSTOM_ELEMENTS_SCHEMA]
21+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
1822
})
19-
export class AppModule {
20-
}
23+
export class AppModule {}

0 commit comments

Comments
 (0)