demo shell (ng2)

basic angular2-based demo shell
This commit is contained in:
Denys Vuika
2016-04-06 14:35:46 +01:00
commit f9e1ad80a9
41 changed files with 1803 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import {Component} from 'angular2/core';
@Component({
selector: 'home-view',
template: `
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Home View</h1>
</div>
</div>
</div>
`,
directives: []
})
export class HomeView {
}