Displaying Data
The live example / download example demonstrates all of the syntax and code
snippets described in this page.
Showing component properties with interpolation
The easiest way to display a component property is to bind the property name through interpolation. With interpolation, you put the property name in the view template, enclosed in double curly braces:{{myHero}}.When you bootstrap with the
AppComponent class (in main.ts), Angular looks for a <app-root>
in the index.html, finds it, instantiates an instance of AppComponent, and renders it
inside the <app-root> tag.

