Files
flights_web/ClientApp/src/app/components/page/feedback/button/feedback-button.component.ts
T

19 lines
380 B
TypeScript

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;
}
}