blob: 0c1669ec4bcb5f3183f26db46b44f9dcbbf80fb5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* Created by rc2122 on 9/27/2017.
*/
import {Component, Input} from "@angular/core";
@Component({
})
export class WizardHeaderBaseComponent {
@Input() currentStepIndex:number;
}
|