2020-04-14 11:28:33 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { ConfigService } from '../../services/config.service';
|
|
|
|
import { BaseComponent } from '../base-page/base.component';
|
2019-09-09 10:49:33 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'framadate-home',
|
|
|
|
templateUrl: './home.component.html',
|
2020-04-14 11:28:33 +02:00
|
|
|
styleUrls: ['./home.component.scss'],
|
2019-09-09 10:49:33 +02:00
|
|
|
})
|
2019-09-09 10:57:08 +02:00
|
|
|
export class HomeComponent extends BaseComponent implements OnInit {
|
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
|
|
|
}
|
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
ngOnInit() {}
|
2019-09-09 10:49:33 +02:00
|
|
|
}
|