mseemann/angular2-mdl

View on GitHub
projects/core/src/lib/tabs/mdl-tab-panel-title.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { Component, ViewContainerRef, ViewEncapsulation } from "@angular/core";

@Component({
  selector: "mdl-tab-panel-title",
  template: ` <ng-content></ng-content> `,
  encapsulation: ViewEncapsulation.None,
})
export class MdlTabPanelTitleComponent {
  constructor(public vcRef: ViewContainerRef) {}
}