mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-14 12:25:14 +00:00
21 lines
572 B
TypeScript
21 lines
572 B
TypeScript
import { Component, ViewEncapsulation, Inject } from '@angular/core';
|
|
import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material';
|
|
|
|
@Component({
|
|
selector : 'fuse-knowledge-base-article',
|
|
templateUrl : './article.component.html',
|
|
styleUrls : ['./article.component.scss'],
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class FuseKnowledgeBaseArticleComponent
|
|
{
|
|
article: any;
|
|
|
|
constructor(
|
|
public dialogRef: MatDialogRef<FuseKnowledgeBaseArticleComponent>,
|
|
@Inject(MAT_DIALOG_DATA) public data: any
|
|
)
|
|
{
|
|
}
|
|
}
|