mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 21:15:07 +00:00
26 lines
513 B
TypeScript
26 lines
513 B
TypeScript
|
import {Component, OnInit} from '@angular/core';
|
||
|
import {LayoutService} from '../../../core/services/layout.service';
|
||
|
|
||
|
@Component({
|
||
|
selector : 'fuse-mail',
|
||
|
templateUrl: './mail.component.html',
|
||
|
styleUrls : ['./mail.component.scss']
|
||
|
})
|
||
|
export class MailComponent implements OnInit
|
||
|
{
|
||
|
|
||
|
constructor(private layoutService: LayoutService)
|
||
|
{
|
||
|
this.layoutService.setSettings({
|
||
|
toolbar : 'below',
|
||
|
navigation: 'left'
|
||
|
});
|
||
|
}
|
||
|
|
||
|
ngOnInit()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|