Skip to content

Instantly share code, notes, and snippets.

@DilinaHirantha
Created August 8, 2021 05:18
Show Gist options
  • Save DilinaHirantha/52e3dbad86a590a86c293b6ed58ba4d9 to your computer and use it in GitHub Desktop.
Save DilinaHirantha/52e3dbad86a590a86c293b6ed58ba4d9 to your computer and use it in GitHub Desktop.
import { Component} from '@angular/core';
@Component({
selector: 'my-card',
template: `
<div>
<ng-content select="header"></ng-content>
<ng-content select="content"></ng-content>
<ng-content select="footer"></ng-content>
</div>
`
})
export class CardComponent {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment