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

18 lines
480 B
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
import { ConfigService } from '../../services/config.service';
import { BaseComponent } from '../base-page/base.component';
@Component({
2020-04-21 10:50:26 +02:00
selector: 'framadate-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss'],
})
export class HomeComponent extends BaseComponent implements OnInit {
2020-04-21 10:50:26 +02:00
nextStep = '/step/answers';
constructor(public config: ConfigService) {
super(config);
}
2020-04-21 10:50:26 +02:00
ngOnInit() {}
}