forked from tykayn/funky-framadate-front
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'framadate-end-confirmation',
|
||
|
templateUrl: './end-confirmation.component.html',
|
||
|
styleUrls: ['./end-confirmation.component.scss']
|
||
|
})
|
||
|
export class EndConfirmationComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
}
|