mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
|
||
|
/** @title Disabled datepicker */
|
||
|
@Component({
|
||
|
selector : 'datepicker-disabled-example',
|
||
|
templateUrl: 'datepicker-disabled-example.html',
|
||
|
styleUrls : ['datepicker-disabled-example.css']
|
||
|
})
|
||
|
export class DatepickerDisabledExample
|
||
|
{
|
||
|
}
|