UNPKG

angular-material-clock-time-picker

Version:

This is time picker for angular material projects, for Angular Material 5.

22 lines (17 loc) 434 B
import { Component } from '@angular/core'; import {MatDialog, MatDialogRef, MAT_DIALOG_DATA} from '@angular/material'; import { TimePickerComponent } from './time-picker/time-picker.component'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { title = 'app'; constructor ( private dialog: MatDialog ) { } Open () { } }