mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-13 04:58:51 +01:00
Panels: development
This commit is contained in:
parent
ef18e103d5
commit
da6eb0db49
11 changed files with 108 additions and 91 deletions
12
src/app/theme/baPanel/baPanel.component.ts
Normal file
12
src/app/theme/baPanel/baPanel.component.ts
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue