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