Initial commit: Aeroflot Flights Web Angular 12 application
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'feedback-button',
|
||||
templateUrl: './feedback-button.component.html',
|
||||
styleUrls: ['./feedback-button.component.scss'],
|
||||
})
|
||||
export class FeedbackButtonComponent {
|
||||
formVisible = false;
|
||||
|
||||
showForm() {
|
||||
this.formVisible = true;
|
||||
}
|
||||
|
||||
hideForm() {
|
||||
this.formVisible = false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user