Component

Component is...

  • Web Component

  • Component Tree

Component Structure

import { Component } form '@angular/core'

@Component({
    selector: 'Selector#',
    templateUrl: './Relative path',
    styleUrls: ['./Relative path']
})

export class AppComponent {
    title = 'project#';
}

Last updated

Was this helpful?