funky-framadate-front/src/app/features/administration/stepper/stepper.component.ts

14 lines
303 B
TypeScript
Raw Normal View History

import { Component, Input, OnInit } from '@angular/core';
2020-05-01 19:10:17 +02:00
@Component({
selector: 'app-stepper',
templateUrl: './stepper.component.html',
styleUrls: ['./stepper.component.scss'],
})
2021-10-15 10:37:38 +02:00
export class StepperComponent {
@Input()
2021-10-15 10:37:38 +02:00
public step_current: number = 1;
@Input()
public step_max: number = 5;
2020-05-01 19:10:17 +02:00
}