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

19 lines
379 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-four',
templateUrl: './step-four.component.html',
styleUrls: ['./step-four.component.scss'],
})
export class StepFourComponent implements OnInit {
2021-10-19 10:23:54 +02:00
urlPrefix: any;
advancedDisplayEnabled: any;
@Input()
step_max: any;
@Input()
form: any;
constructor() {}
ngOnInit(): void {}
}