diff --git a/aio/content/examples/forms-overview/src/app/app.module.ts b/aio/content/examples/forms-overview/src/app/app.module.ts index 1991c7ae17..fbce0eff3e 100644 --- a/aio/content/examples/forms-overview/src/app/app.module.ts +++ b/aio/content/examples/forms-overview/src/app/app.module.ts @@ -14,7 +14,6 @@ import { TemplateModule } from './template/template.module'; ReactiveModule, TemplateModule ], - providers: [], bootstrap: [AppComponent] }) export class AppModule { } diff --git a/aio/content/examples/forms-overview/src/app/reactive/favorite-color/favorite-color.component.ts b/aio/content/examples/forms-overview/src/app/reactive/favorite-color/favorite-color.component.ts index 25e901f6e4..282df4d8db 100644 --- a/aio/content/examples/forms-overview/src/app/reactive/favorite-color/favorite-color.component.ts +++ b/aio/content/examples/forms-overview/src/app/reactive/favorite-color/favorite-color.component.ts @@ -5,8 +5,7 @@ import { FormControl } from '@angular/forms'; selector: 'app-reactive-favorite-color', template: ` Favorite Color: - `, - styles: [] + ` }) export class FavoriteColorComponent { favoriteColorControl = new FormControl(''); diff --git a/aio/content/examples/forms-overview/src/app/template/favorite-color/favorite-color.component.ts b/aio/content/examples/forms-overview/src/app/template/favorite-color/favorite-color.component.ts index b5abdffcff..7a965b7c33 100644 --- a/aio/content/examples/forms-overview/src/app/template/favorite-color/favorite-color.component.ts +++ b/aio/content/examples/forms-overview/src/app/template/favorite-color/favorite-color.component.ts @@ -4,8 +4,7 @@ import { Component } from '@angular/core'; selector: 'app-template-favorite-color', template: ` Favorite Color: - `, - styles: [] + ` }) export class FavoriteColorComponent { favoriteColor = '';