src/app/layout/body/body.component.ts
Body component
selector | app-body |
templateUrl | ./body.component.html |
Methods |
constructor()
|
Defined in src/app/layout/body/body.component.ts:13
|
ngOnInit |
ngOnInit()
|
Defined in src/app/layout/body/body.component.ts:24
|
Initialize
Returns :
void
|
import { Component, OnInit } from '@angular/core';
/**
* Body component
*
* @author Gunnar Hillert
* @author Damien Vitrac
*/
@Component({
selector: 'app-body',
templateUrl: './body.component.html',
})
export class BodyComponent implements OnInit {
/**
* Constructor
*/
constructor() {
}
/**
* Initialize
*/
ngOnInit(): void {
}
}
<div id="content">
<div class="main">
<ng-content></ng-content>
</div>
</div>