funky-framadate-front/src/app/features/administration/form/step-three/step-three.component.ts

17 lines
336 B
TypeScript
Raw Normal View History

2021-10-19 10:23:54 +02:00
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 {
2021-10-19 10:23:54 +02:00
@Input()
step_max: any;
@Input()
form: any;
constructor() {}
ngOnInit(): void {}
}