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

29 lines
598 B
TypeScript

import {Component, OnInit} from '@angular/core';
import {ConfigService} from '../config.service';
// import {PollConfig} from '../config/PollConfig';
@Component({
selector: 'framadate-form-container',
templateUrl: './form-container.component.html',
styleUrls: ['./form-container.component.scss']
})
/**
* gestion de la progression dans le formulaire.
* à chaque étape correspond un composant de page
*/
export class FormContainerComponent implements OnInit {
private progressionStep = 0;
constructor(private config: ConfigService) {
}
ngOnInit() {
}
}