Skip to content

Commit

Permalink
test: removed unused methods from button component (#27273)
Browse files Browse the repository at this point in the history
* docs: removed unused methods from button component

* update
  • Loading branch information
aanchal88 authored Jun 10, 2023
1 parent 2fbb81d commit 74a6551
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import {Component, OnInit} from '@angular/core';
import {Component} from '@angular/core';

@Component({
selector: 'button-example',
templateUrl: './button.component.html',
styleUrls: ['./button.component.scss'],
})
export class ButtonComponent implements OnInit {
constructor() {}

ngOnInit(): void {}
}
export class ButtonComponent {}
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
import {Component, OnInit} from '@angular/core';
import {Component} from '@angular/core';

@Component({
selector: 'button-example',
templateUrl: './button.component.html',
styleUrls: ['./button.component.scss'],
})
export class ButtonComponent implements OnInit {
constructor() {}

ngOnInit(): void {}
}
export class ButtonComponent {}

0 comments on commit 74a6551

Please sign in to comment.