2019-08-10 17:41:01 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
2019-09-09 10:57:08 +02:00
|
|
|
import {BaseComponent} from "../base-page/base.component";
|
|
|
|
import {ConfigService} from "../../config.service";
|
2019-08-10 17:41:01 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'framadate-end-confirmation',
|
|
|
|
templateUrl: './end-confirmation.component.html',
|
|
|
|
styleUrls: ['./end-confirmation.component.scss']
|
|
|
|
})
|
2019-09-09 10:57:08 +02:00
|
|
|
export class EndConfirmationComponent extends BaseComponent implements OnInit {
|
2019-08-10 17:41:01 +02:00
|
|
|
|
2019-09-09 10:57:08 +02:00
|
|
|
constructor(public config: ConfigService) {
|
|
|
|
super(config);
|
|
|
|
}
|
2019-08-10 17:41:01 +02:00
|
|
|
|
2019-09-09 10:57:08 +02:00
|
|
|
ngOnInit() {
|
2019-08-10 17:41:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|