funky-framadate-front/src/app/pages/home/home.component.ts

21 lines
507 B
TypeScript
Raw Normal View History

import {Component, OnInit} from '@angular/core';
2019-12-03 17:20:57 +01:00
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 {
2020-01-23 16:47:53 +01:00
nextStep = '/step/answers';
constructor(public config: ConfigService) {
super(config);
}
ngOnInit() {
}
}