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