mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-27 02:23:10 +00:00
33 lines
608 B
TypeScript
33 lines
608 B
TypeScript
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'fuse-quick-panel',
|
|
templateUrl : './quick-panel.component.html',
|
|
styleUrls : ['./quick-panel.component.scss'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class FuseQuickPanelComponent implements OnInit
|
|
{
|
|
date: Date;
|
|
settings: any;
|
|
notes = [];
|
|
events = [];
|
|
|
|
constructor()
|
|
{
|
|
this.date = new Date();
|
|
this.settings = {
|
|
notify: true,
|
|
cloud : false,
|
|
retro : true
|
|
};
|
|
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
|
|
}
|
|
|
|
}
|