2019-08-09 17:43:23 +02:00
|
|
|
import {Component, OnInit} from '@angular/core';
|
2019-08-10 16:57:36 +02:00
|
|
|
import {BaseComponent} from '../base-page/base.component';
|
2019-12-03 17:20:57 +01:00
|
|
|
import {ConfigService} from '../../services/config.service';
|
2019-08-09 15:14:23 +02:00
|
|
|
|
|
|
|
@Component({
|
2019-08-10 16:20:59 +02:00
|
|
|
selector: 'framadate-page-kind',
|
2019-08-10 16:57:36 +02:00
|
|
|
templateUrl: './kind.component.html',
|
|
|
|
styleUrls: ['./kind.component.scss']
|
2019-08-09 15:14:23 +02:00
|
|
|
})
|
2019-08-10 16:57:36 +02:00
|
|
|
export class KindComponent extends BaseComponent implements OnInit {
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2019-08-11 16:21:49 +02:00
|
|
|
constructor(public config: ConfigService) {
|
2019-08-10 16:20:59 +02:00
|
|
|
super(config);
|
|
|
|
}
|
2019-08-09 15:14:23 +02:00
|
|
|
|
2019-08-10 16:20:59 +02:00
|
|
|
ngOnInit() {
|
|
|
|
}
|
2019-08-09 15:14:23 +02:00
|
|
|
|
|
|
|
}
|