openaire-library/sharedComponents/quick-contact/quick-contact.component.ts

14 lines
340 B
TypeScript
Raw Normal View History

import {Component, Input, OnDestroy, OnInit} from '@angular/core';
@Component({
selector: 'quick-contact',
templateUrl: 'quick-contact.component.html',
styleUrls: ['quick-contact.component.css']
})
export class QuickContactComponent {
public showModal: boolean = false;
public toggleModal() {
this.showModal = !this.showModal;
}
}