mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
11 lines
150 B
TypeScript
11 lines
150 B
TypeScript
import * as ng from 'angular2/core';
|
|
|
|
@ng.Component({
|
|
selector: 'about'
|
|
})
|
|
@ng.View({
|
|
template: require('./about.html')
|
|
})
|
|
export class About {
|
|
}
|