Guest User

Untitled

a guest
Feb 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @Component({
  2. selector: ‘tab’,
  3. template: `
  4. <div *ngIf=”!active”>
  5. <ng-content></ng-content>
  6. </div>
  7. `
  8. })
  9. export class TabComponent {
  10. @Input() active = false;
  11. }
Add Comment
Please, Sign In to add comment