2019-09-09 10:49:33 +02:00
|
|
|
import {Component, OnInit} from '@angular/core';
|
|
|
|
import {ConfigService} from "../../config.service";
|
2019-09-09 10:57:08 +02:00
|
|
|
import {BaseComponent} from "../base-page/base.component";
|
2019-09-09 10:49:33 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'framadate-home',
|
|
|
|
templateUrl: './home.component.html',
|
|
|
|
styleUrls: ['./home.component.scss']
|
|
|
|
})
|
2019-09-09 10:57:08 +02:00
|
|
|
export class HomeComponent extends BaseComponent implements OnInit {
|
2019-09-09 10:49:33 +02:00
|
|
|
|
|
|
|
constructor(public config: ConfigService) {
|
2019-09-09 10:57:08 +02:00
|
|
|
super(config);
|
2019-09-09 10:49:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|