Last active
May 12, 2016 07:02
-
-
Save jhades/7db8bd884fcc993156a938b5a16f9524 to your computer and use it in GitHub Desktop.
This file contains 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
@Component({ | |
selector: 'app', | |
template: ` | |
<div class="color-sample" [style.background]="'red'"> | |
Color Sample</div> | |
<button [disabled]="true">Disabled</button> | |
<input [required]="true" value="Hello World !"> | |
` | |
}) | |
export class App { | |
} | |
bootstrap(App); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment