21 lines
422 B
TypeScript
21 lines
422 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-plain-layout',
|
|
styleUrls: ['./plain.layout.scss'],
|
|
template: `
|
|
<nb-layout>
|
|
|
|
|
|
<nb-layout-column>
|
|
<ng-content select="router-outlet"></ng-content>
|
|
</nb-layout-column>
|
|
|
|
<nb-layout-footer fixed>
|
|
<ngx-footer></ngx-footer>
|
|
</nb-layout-footer>
|
|
</nb-layout>
|
|
`,
|
|
})
|
|
export class PlainLayoutComponent { }
|