mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
docs: removed empty methods (#48230)
I removed empty methods from a file and unnecessary import PR Close #48230
This commit is contained in:
parent
ad483007b4
commit
fcf857209f
1 changed files with 2 additions and 7 deletions
|
|
@ -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 {
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue