mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-12 03:21:37 +00:00
17 lines
329 B
TypeScript
17 lines
329 B
TypeScript
import { Component, ViewEncapsulation } from '@angular/core';
|
|
|
|
@Component({
|
|
selector : 'mailbox-empty-details',
|
|
templateUrl : './empty-details.component.html',
|
|
encapsulation: ViewEncapsulation.None
|
|
})
|
|
export class MailboxEmptyDetailsComponent
|
|
{
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
}
|