import { Component } from '@angular/core'; @Component({ selector: 'aio-gs-interpolation', template: ` <h1>Welcome to {{'{'+'{'}}siteName{{'}'+'}'}}<h1> siteName = '';

Welcome to {{ siteName }}

` }) export class InterpolationComponent { siteName = 'My Store'; }