how to show current date in input type date in datepicker code example
Example: how to set input of time type to current time on initialization
this.createForm.patchValue({
date: new Date(),
time: new Date().getHours() + ':' + new Date().getMinutes()
});