fuse-angular/src/app/main/apps/mail/mail.component.ts

27 lines
550 B
TypeScript
Raw Normal View History

2017-07-12 14:34:32 +00:00
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({
2017-07-12 14:34:32 +00:00
navigation: 'left',
toolbar : 'below',
2017-07-12 14:34:32 +00:00
footer : 'below'
});
}
ngOnInit()
{
}
}