src/app/app.component.ts
The main component
selector | app-root |
styleUrls | app.component.scss |
templateUrl | ./app.component.html |
Properties |
title |
title:
|
Type : String
|
Default value : 'app'
|
Defined in src/app/app.component.ts:12
|
import { Component } from '@angular/core';
/**
* The main component
*/
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title: String = 'app';
}
<!--The content below is only a placeholder and can be replaced.-->
<app-header></app-header>
<app-main></app-main>
<app-footer></app-footer>