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

18 lines
353 B
TypeScript
Raw Normal View History

2021-10-19 10:23:54 +02:00
import { Component, Input, OnInit } from '@angular/core';
2021-10-15 09:39:51 +02:00
@Component({
selector: 'app-step-two',
templateUrl: './step-two.component.html',
styleUrls: ['./step-two.component.scss'],
})
export class StepTwoComponent implements OnInit {
constructor() {}
ngOnInit(): void {}
2021-10-19 10:23:54 +02:00
@Input()
form: any;
@Input()
step_max: any;
addIntervalOfDates() {}
2021-10-15 09:39:51 +02:00
}