funky-framadate-front/src/app/features/administration/form/date/picker/picker.component.ts

22 lines
483 B
TypeScript
Raw Normal View History

2021-05-17 15:25:22 +02:00
import { Component, Input, OnInit } from '@angular/core';
import { UntypedFormGroup } from '@angular/forms';
2021-05-17 15:25:22 +02:00
@Component({
selector: 'app-picker',
templateUrl: './picker.component.html',
styleUrls: ['./picker.component.scss'],
})
export class PickerComponent implements OnInit {
@Input()
public form: UntypedFormGroup;
2021-05-17 15:25:22 +02:00
selectionKind = 'multiple';
dateCalendarEnum: any[];
today: Date = new Date();
constructor() {}
ngOnInit(): void {}
setDefaultDatesForInterval() {}
}