Skip to content

Instantly share code, notes, and snippets.

@JiaLiPassion
Created June 20, 2018 06:22
Show Gist options
  • Save JiaLiPassion/3b918ce512b730c0efc35f7efc6812c8 to your computer and use it in GitHub Desktop.
Save JiaLiPassion/3b918ce512b730c0efc35f7efc6812c8 to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
@Component({
  selector: 'app-hello',
  template: `<div>{{name}}</div>`
})
export class HelloComponent {
  @Input() name: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment