import { Component, OnInit, AfterViewInit } from '@angular/core'; @Component({ template: ` ` }) export class SimpleDatePickerExample implements OnInit { date: Date = new Date(); settings = { bigBanner: false, timePicker: false, format: 'dd-MM-yyyy HH:mm', defaultOpen: true } constructor(){ } ngOnInit(){ } }