Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created December 18, 2018 03:13
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/15ca19962f03bd036c1d7ca0471830c2 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/15ca19962f03bd036c1d7ca0471830c2 to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
@Component({
selector: 'app-greet',
template: `
<h2>{{title}}</h2>
<ng-content></ng-content>
`
})
export class GreetComponent {
title = 'Greet';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment