Skip to content

Instantly share code, notes, and snippets.

@alterx
Created November 21, 2016 19:06
Show Gist options
  • Save alterx/2138db239ab274d353bc9195db15082c to your computer and use it in GitHub Desktop.
Save alterx/2138db239ab274d353bc9195db15082c to your computer and use it in GitHub Desktop.
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