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