add component for a custom date picker that also knows relative date ranges like 'last month'

This commit is contained in:
2024-03-31 14:48:33 +02:00
parent b0467c4571
commit 6b8e3d2089
8 changed files with 443 additions and 75 deletions

View File

@@ -0,0 +1,12 @@
import { Component} from '@angular/core';
@Component({
selector: 'app-date-picker-test',
templateUrl: './date-picker-test.component.html'
})
export class DatePickerTestComponent {
constructor(){
}
}