Skip to content

Instantly share code, notes, and snippets.

@wKoza
Created December 21, 2016 19:48
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/184ceb0b45b51a9bd4227a63432242a1 to your computer and use it in GitHub Desktop.
Save wKoza/184ceb0b45b51a9bd4227a63432242a1 to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
@Component({
selector: 'tab',
styles: [`
.pane{
padding: 1em;
}
`],
template: `
<div [hidden]="!active" class="pane">
<ng-content></ng-content>
</div>
`
})
export class TabComponent {
@Input('tabTitle') title: string;
@Input() active = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment