src/app/page-layouts/carded/fullwidth/fullwidth.component.ts
| selector | app-fullwidth |
| styleUrls | ./fullwidth.component.scss |
| templateUrl | ./fullwidth.component.html |
Methods |
constructor()
|
| ngOnInit |
ngOnInit()
|
|
Returns :
void
|
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-fullwidth',
templateUrl: './fullwidth.component.html',
styleUrls: ['./fullwidth.component.scss']
})
export class FullwidthComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
<stbui-base-layout>
<stbui-base-layout-header>header</stbui-base-layout-header>
<stbui-base-layout-toolbar>toolbar</stbui-base-layout-toolbar>
<app-demo-content></app-demo-content>
</stbui-base-layout>
./fullwidth.component.scss