initial commit

This commit is contained in:
Chris Chen
2022-09-30 10:53:48 -07:00
commit 911b45739d
1026 changed files with 149872 additions and 0 deletions
@@ -0,0 +1,20 @@
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 { }