import { Component, Input, OnInit } from '@angular/core'; @Component({ selector: 'app-step-three', templateUrl: './step-three.component.html', styleUrls: ['./step-three.component.scss'], }) export class StepThreeComponent implements OnInit { @Input() step_max: any; @Input() form: any; constructor() {} ngOnInit(): void {} }