Skip to content

Instantly share code, notes, and snippets.

@wKoza
Created January 29, 2017 13:30
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 wKoza/279f06dd2e983cc689f23c95d7f9b8b5 to your computer and use it in GitHub Desktop.
Save wKoza/279f06dd2e983cc689f23c95d7f9b8b5 to your computer and use it in GitHub Desktop.
@Component({
selector: 'card',
template: `
<div class="card">
<h3 class="card-header"><ng-content select="div[role=header]"></ng-content></h3>
<div class="card-block">
<ng-content></ng-content>
</div>
<div class="card-footer">
<ng-content select="div[role=footer]"></ng-content>
</div>
</div>
`,
})
export class CardComponent { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment