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.
22 lines
475 B
TypeScript
22 lines
475 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { ModalController } from '@ionic/angular';
|
|
|
|
@Component({
|
|
selector: 'app-select-period',
|
|
templateUrl: './select-period.component.html',
|
|
styleUrls: ['./select-period.component.scss'],
|
|
})
|
|
export class SelectPeriodComponent implements OnInit {
|
|
|
|
constructor(public modalController: ModalController) { }
|
|
|
|
ngOnInit() {}
|
|
|
|
public dismiss() {
|
|
this.modalController.dismiss({
|
|
dismissed: true
|
|
});
|
|
}
|
|
|
|
}
|