mustafahlvc 76358f996e Angular material docs updated,
+ @angular/material-moment-adapter added to package.json
2017-11-17 18:35:44 +03:00

14 lines
375 B
TypeScript

import { Component } from '@angular/core';
/** @title Datepicker with min & max validation */
@Component({
selector : 'datepicker-min-max-example',
templateUrl: 'datepicker-min-max-example.html',
styleUrls : ['datepicker-min-max-example.css']
})
export class DatepickerMinMaxExample
{
minDate = new Date(2000, 0, 1);
maxDate = new Date(2020, 0, 1);
}