Denys Vuika 088f365355 Demo project cleanup
Removed all obsolete stuff from the ng2 demo project
2016-04-16 11:14:32 +01:00

15 lines
263 B
TypeScript

import {Component} from "angular2/core";
@Component({
selector: 'page2-view',
template: `
<div class="container">
<div class="row">
<h2>Page 2</h2>
</div>
</div>
`
})
export class Page2View {
}