funky-framadate-front/mocks/old-stuff/pages/example/kind/kind.component.ts

17 lines
459 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
import { BaseComponent } from '../base-page/base.component';
import { ConfigService } from '../../../services/config.service';
2019-08-09 15:14:23 +02:00
@Component({
2020-04-22 12:56:18 +02:00
selector: 'app-page-kind',
2020-04-21 10:50:26 +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 {
2020-04-21 10:50:26 +02:00
constructor(public config: ConfigService) {
super(config);
}
2019-08-09 15:14:23 +02:00
2020-05-01 19:10:17 +02:00
ngOnInit(): void {}
2019-08-09 15:14:23 +02:00
}