Interpolation

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