I\'m using Angular 2 and I\'ve written the below code:
some texts
I\'ve also tried:
Works fine for me
Plunker example
@Component({ selector: 'my-app', styles: [`div { border: 3px solid red; }`] template: ` Hello {{name}} some texts `, }) export class App { name:string; width: number = 250; constructor() { this.name = 'Angular2' } }