import { Component } from '@angular/core'; @Component({ selector: 'common-user-account', template: ` {{text}} ` }) export class CommonUserAccountComponent { text: string; constructor() { // console.log('Hello CommonUserAccount Component'); this.text = 'Hello World'; } }