diff --git a/aio/content/examples/feature-modules/src/app/customer-dashboard/customer-dashboard/customer-dashboard.component.ts b/aio/content/examples/feature-modules/src/app/customer-dashboard/customer-dashboard/customer-dashboard.component.ts index b4dcf2e8fe5..f5d776a6139 100644 --- a/aio/content/examples/feature-modules/src/app/customer-dashboard/customer-dashboard/customer-dashboard.component.ts +++ b/aio/content/examples/feature-modules/src/app/customer-dashboard/customer-dashboard/customer-dashboard.component.ts @@ -1,15 +1,10 @@ -import { Component, OnInit } from '@angular/core'; +import { Component } from '@angular/core'; @Component({ selector: 'app-customer-dashboard', templateUrl: './customer-dashboard.component.html', styleUrls: ['./customer-dashboard.component.css'] }) -export class CustomerDashboardComponent implements OnInit { - - constructor() { } - - ngOnInit() { - } +export class CustomerDashboardComponent { }