You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
649 B
TypeScript
26 lines
649 B
TypeScript
import { Component, OnInit, Output, EventEmitter, OnDestroy } from '@angular/core';
|
|
import { TranslatorService } from '../../services/translator/translator.service';
|
|
import { Platform, NavController } from '@ionic/angular';
|
|
import { Router, NavigationEnd } from '@angular/router';
|
|
import { Subscription } from 'rxjs';
|
|
|
|
@Component({
|
|
selector: 'send-email',
|
|
templateUrl: './send-email.component.html',
|
|
styleUrls: ['./send-email.component.scss']
|
|
})
|
|
export class SendEmailComponent implements OnInit {
|
|
@Output() triggered = new EventEmitter();
|
|
constructor(
|
|
) {
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
public onClick() {
|
|
this.triggered.emit();
|
|
}
|
|
|
|
}
|