basic sidebar implementation

This commit is contained in:
nixa 2016-04-27 13:17:51 +03:00
parent 0b399a4a1b
commit e452207030
6 changed files with 295 additions and 4 deletions

View file

@ -0,0 +1,10 @@
import {Component, ViewEncapsulation} from 'angular2/core';
@Component({
selector: 'sidebar',
styles: [ require('./sidebar.scss') ],
template: require('./sidebar.html'),
directives: [],
pipes: []
})
export class Sidebar {}