angular-cn/public/docs/_examples/homepage-hello-world/ts/app/main.ts

5 lines
133 B
TypeScript

// #docregion
import {bootstrap} from 'angular2/platform/browser';
import {HelloWorld} from './hello_world';
bootstrap(HelloWorld);