2020-04-14 11:28:33 +02:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { ConfigService } from '../../services/config.service';
|
2020-04-20 18:11:00 +02:00
|
|
|
import { BaseComponent } from '../example/base-page/base.component';
|
2019-09-09 10:49:33 +02:00
|
|
|
|
|
|
|
@Component({
|
2020-04-22 12:56:18 +02:00
|
|
|
selector: 'app-home',
|
2020-04-21 10:50:26 +02:00
|
|
|
templateUrl: './home.component.html',
|
|
|
|
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-04-21 10:50:26 +02:00
|
|
|
nextStep = '/step/answers';
|
|
|
|
constructor(public config: ConfigService) {
|
|
|
|
super(config);
|
|
|
|
}
|
2019-09-09 10:49:33 +02:00
|
|
|
|
2020-05-01 19:10:17 +02:00
|
|
|
ngOnInit(): void {}
|
2019-09-09 10:49:33 +02:00
|
|
|
}
|