funky-framadate-front/src/app/form-container/form-container.component.ts

26 lines
562 B
TypeScript
Raw Normal View History

2019-08-09 15:14:23 +02:00
import {Component, OnInit} from '@angular/core';
2019-08-10 16:20:59 +02:00
import {ConfigService} from '../config.service';
2019-08-09 15:14:23 +02:00
// import {PollConfig} from '../config/PollConfig';
2019-08-09 15:14:23 +02:00
@Component({
2019-08-10 11:06:13 +02:00
selector: 'framadate-form-container',
templateUrl: './form-container.component.html',
styleUrls: ['./form-container.component.scss']
2019-08-09 15:14:23 +02:00
})
/**
* gestion de la progression dans le formulaire.
* à chaque étape correspond un composant de page
*/
export class FormContainerComponent implements OnInit {
2019-08-11 16:21:49 +02:00
constructor(public config: ConfigService) {
2019-08-10 11:06:13 +02:00
}
2019-08-09 15:14:23 +02:00
2019-08-10 11:06:13 +02:00
ngOnInit() {
}
2019-08-09 15:14:23 +02:00
2019-08-09 15:14:23 +02:00
}