Interpolationapp.component.html<h1> Welcome to {{title}}!</h1>Copyapp.component.tsimport { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss']})export class AppComponent { title = 'InterLink inCamp';}Copy