2019-09-09 10:49:33 +02:00
|
|
|
import {Component, OnInit} from '@angular/core';
|
2019-12-03 17:20:57 +01:00
|
|
|
import {ConfigService} from "../../services/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
|
|
|
|
2020-01-23 16:47:53 +01:00
|
|
|
nextStep = '/step/answers';
|
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() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|