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