import { Component, OnInit, OnDestroy } from '@angular/core'; @Component({ selector: 'cm-datepicker-doc-9', templateUrl: './datePicker-doc-9.component.html', styleUrls: ['./datePicker-doc-9.component.css'] }) export class DatePickerDoc9Component implements OnInit, OnDestroy { _dateRange:any[] = [null, null]; constructor() { } ngOnInit(){ } ngOnDestroy(){ } }