ngx-admin/src/app/@theme/layouts/one-coll-layout/one-coll.layout.ts

19 lines
433 B
TypeScript
Raw Normal View History

2017-04-13 14:24:23 +03:00
import { Component } from '@angular/core';
@Component({
selector: 'one-coll-layout',
template: `
<nga-layout>
<nga-layout-header fixed></nga-layout-header>
<nga-sidebar fixed></nga-sidebar>
<nga-layout-column>
<ng-content></ng-content>
</nga-layout-column>
<nga-layout-footer fixed></nga-layout-footer>
</nga-layout>
`,
})
export class RootLayoutComponent {
constructor() { }
}