angular-docs-cn/modules/rollup-test/hello_world.ts

13 lines
239 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
import {bootstrap} from '@angular/platform-browser-dynamic';
@Component({
selector: 'hello-world',
template: 'hello world!!!'
})
class HelloWorldComponent {
}
bootstrap(HelloWorldComponent);