12 lines
220 B
Markdown
12 lines
220 B
Markdown
|
```
|
||
|
function AppComponent () {}
|
||
|
|
||
|
AppComponent.annotations = [
|
||
|
new ng.ComponentAnnotation({
|
||
|
selector: 'my-app'
|
||
|
}),
|
||
|
new ng.ViewAnnotation({
|
||
|
template: '<h1 id="output">My First Angular 2 App</h1>'
|
||
|
})
|
||
|
];
|
||
|
```
|