import { Component, Input } from '@angular/core'; @Component({ selector: 'my-text-component', templateUrl: "shared/page-components/text/text.html" }) export class TextComponent { @Input() textToDisplay: string; }