Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created December 13, 2016 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/f8c6dab46f097727e91108761a79ea4a to your computer and use it in GitHub Desktop.
Save debugmodedotnet/f8c6dab46f097727e91108761a79ea4a to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'appchild',
template: `<h2>Hi {{greetMessage}}</h2>`
})
export class AppChildComponent {
greetMessage: string = "I am Child";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment