我是Angular 2的新手。我看过这个视频 https://egghead.io/lessons/angular-2-say-hello-world-to-angular-2
现在我想在我尝试过的 plunker 上做同样的演示
http://plnkr.co/edit/uQa9ZIvb38iTMaXsecaC?p=preview
请告诉我哪里做错了
// 代码在这里
import {bootstrap} from 'angular';
import {Component} from 'angular2/core';
@Component({
selector:'app',
template:'<div>hello</div>'
})
class App{}
bootstrap(App)