Skip to content

Instantly share code, notes, and snippets.

@NishuGoel
Created July 27, 2018 16:40
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 NishuGoel/d9d60bffd9ad81c004e24a1d7055a0fe to your computer and use it in GitHub Desktop.
Save NishuGoel/d9d60bffd9ad81c004e24a1d7055a0fe to your computer and use it in GitHub Desktop.
import { Component,Input,OnInit } from '@angular/core';
@Component({
selector: 'appchild',
template: `<h2>Hi {{message}}</h2>`
})
export class ChildComponent implements OnInit{
_message: string;
constructor(){
}
ngOnInit(){
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment