Created
November 21, 2016 19:06
-
-
Save alterx/2138db239ab274d353bc9195db15082c 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: 'my-app', | |
template: ` | |
<my-child-component [prop1]="name"></my-child-component> | |
`, | |
}) | |
export class App { | |
name: string = "Carlos"; | |
constructor() {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment