Files
doneit-web/src/app/shared/popover/group-duration/group-duration.page.ts
T

22 lines
444 B
TypeScript
Raw Normal View History

2021-01-05 11:47:53 +01:00
import { Component, OnInit } from '@angular/core';
2021-01-06 15:28:42 +01:00
import { PopoverController } from '@ionic/angular';
2021-01-05 11:47:53 +01:00
@Component({
selector: 'app-group-duration',
templateUrl: './group-duration.page.html',
styleUrls: ['./group-duration.page.scss'],
})
export class GroupDurationPage implements OnInit {
2021-01-06 15:28:42 +01:00
constructor(
public popoverController: PopoverController,
) { }
2021-01-05 11:47:53 +01:00
ngOnInit() {
}
2021-01-06 15:28:42 +01:00
close(){
this.popoverController.dismiss();
}
2021-01-05 11:47:53 +01:00
}