Panels: development

This commit is contained in:
smartapant 2016-05-02 14:13:41 +03:00
parent ef18e103d5
commit da6eb0db49
11 changed files with 108 additions and 91 deletions

View file

@ -0,0 +1,12 @@
import {Component, ViewEncapsulation, Input} from 'angular2/core';
@Component({
selector: 'ba-panel',
styles: [require('./baPanel.scss')],
template: require('./baPanel.html'),
encapsulation: ViewEncapsulation.None
})
export class BaPanel {
@Input() title:String;
@Input() baPanelClass:String;
}