1npm install --save ngx-material-timepicker
2Next import the timepicker module into your app's module:
3
4import {NgModule} from '@angular/core';
5import {NgxMaterialTimepickerModule} from 'ngx-material-timepicker';
6
7@NgModule({
8 imports: [NgxMaterialTimepickerModule]
9})
10export class MyModule {}
11Finally connect the timepicker to an input via a template property:
12
13<input [ngxTimepicker]="picker">
14<ngx-material-timepicker #picker></ngx-material-timepicker>