You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
659 B
23 lines
659 B
import { Component, OnInit } from '@angular/core'; |
|
import {FormBuilder, FormGroup, Validators} from '@angular/forms'; |
|
@Component({ |
|
selector: 'app-stepper', |
|
templateUrl: './stepper.component.html', |
|
styleUrls: ['./stepper.component.scss'] |
|
}) |
|
export class StepperComponent implements OnInit { |
|
isLinear = false; |
|
firstFormGroup: FormGroup; |
|
secondFormGroup: FormGroup; |
|
constructor(private _formBuilder: FormBuilder) { } |
|
|
|
ngOnInit() { |
|
this.firstFormGroup = this._formBuilder.group({ |
|
firstCtrl: ['', Validators.required] |
|
}); |
|
this.secondFormGroup = this._formBuilder.group({ |
|
secondCtrl: ['', Validators.required] |
|
}); |
|
} |
|
|
|
}
|
|
|