9 lines
232 B
TypeScript
Raw Normal View History

import {Component} from '@angular/core';
import {bootstrap} from '@angular/platform-browser-dynamic';
2016-05-01 22:50:37 -07:00
@Component({selector: 'hello-world', template: 'hello world!!!'})
class HelloWorldComponent {
}
bootstrap(HelloWorldComponent);