import { Component, Input } from '@angular/core'; @Component({ selector: 'my-title-component', templateUrl: "shared/page-components/title/title.html", styleUrls: ['shared/page-components/title/title-common.css'] }) export class TitleComponent { @Input() titleText: string; }