docs: removed empty methods (#48230)

I removed empty methods from a file and unnecessary import

PR Close #48230
This commit is contained in:
piyush132000 2022-11-25 09:43:46 +05:30 committed by Andrew Scott
parent ad483007b4
commit fcf857209f

View file

@ -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 {
}