forked from tykayn/funky-framadate-front
20 lines
480 B
TypeScript
20 lines
480 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
import {BaseComponent} from '../base-page/base.component';
|
|
import {ConfigService} from '../../services/config.service';
|
|
|
|
@Component({
|
|
selector: 'framadate-page-kind',
|
|
templateUrl: './kind.component.html',
|
|
styleUrls: ['./kind.component.scss']
|
|
})
|
|
export class KindComponent extends BaseComponent implements OnInit {
|
|
|
|
constructor(public config: ConfigService) {
|
|
super(config);
|
|
}
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|