Last active
February 5, 2017 15:45
-
-
Save codemilli/6b327ed8fdd5d32a56c35662fd8103a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'sth', | |
template: `<h2> Hello {{ title }} </h2>` | |
}) | |
export class TemplateTestComponent { | |
title: string = " Something "; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment