File

src/app/layout/body/body.component.ts

Description

Body component

Implements

OnInit

Example

Metadata

selector app-body
templateUrl ./body.component.html

Index

Methods

Constructor

constructor()

Methods

ngOnInit
ngOnInit()

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>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""