Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created March 26, 2018 03:09
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/f1b04f32ad2791e5b43b8c086b34890d to your computer and use it in GitHub Desktop.
Save debugmodedotnet/f1b04f32ad2791e5b43b8c086b34890d to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-message',
template: `<h2>{{message}}</h2>`
})
export class MessageComponent {
@Input() message: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment