mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
17 lines
459 B
TypeScript
17 lines
459 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { BaseComponent } from '../base-page/base.component';
|
|
import { ConfigService } from '../../../services/config.service';
|
|
|
|
@Component({
|
|
selector: 'app-page-kind',
|
|
templateUrl: './kind.component.html',
|
|
styleUrls: ['./kind.component.scss'],
|
|
})
|
|
export class KindComponent extends BaseComponent implements OnInit {
|
|
constructor(public config: ConfigService) {
|
|
super(config);
|
|
}
|
|
|
|
ngOnInit(): void {}
|
|
}
|