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

27 lines
558 B
TypeScript
Raw Normal View History

2017-07-12 14:34:32 +00:00
import { Component, OnInit } from '@angular/core';
2017-07-13 14:43:22 +00:00
import { FuseLayoutService } from '../../../core/services/layout.service';
@Component({
selector : 'fuse-mail',
templateUrl: './mail.component.html',
styleUrls : ['./mail.component.scss']
})
export class MailComponent implements OnInit
{
2017-07-13 14:43:22 +00:00
constructor(private layoutService: FuseLayoutService)
{
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()
{
}
}