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

14 lines
303 B
TypeScript

import { Component, Input, OnInit } from '@angular/core';
@Component({
selector: 'app-stepper',
templateUrl: './stepper.component.html',
styleUrls: ['./stepper.component.scss'],
})
export class StepperComponent {
@Input()
public step_current: number = 1;
@Input()
public step_max: number = 5;
}