mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
23 lines
543 B
TypeScript
23 lines
543 B
TypeScript
import { Component, Inject, OnInit } from '@angular/core';
|
|
import { MD_DIALOG_DATA, MdDialogRef } from '@angular/material';
|
|
|
|
@Component({
|
|
selector : 'fuse-calendar-event-dialog',
|
|
templateUrl: './event-dialog.component.html',
|
|
styleUrls : ['./event-dialog.component.scss']
|
|
})
|
|
export class EventDialogComponent implements OnInit
|
|
{
|
|
|
|
constructor(private dialogRef: MdDialogRef<EventDialogComponent>,
|
|
@Inject(MD_DIALOG_DATA) private data: any)
|
|
{
|
|
console.log(data);
|
|
}
|
|
|
|
ngOnInit()
|
|
{
|
|
}
|
|
|
|
}
|