mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
11 lines
147 B
TypeScript
11 lines
147 B
TypeScript
import * as ng from 'angular2/core';
|
|
|
|
@ng.Component({
|
|
selector: 'home'
|
|
})
|
|
@ng.View({
|
|
template: require('./home.html')
|
|
})
|
|
export class Home {
|
|
}
|