2016-04-28 17:50:03 -07:00
|
|
|
import {Component} from '@angular/core';
|
2016-05-19 14:31:21 -07:00
|
|
|
import {bootstrap} from '@angular/platform-browser';
|
2016-04-28 17:50:03 -07:00
|
|
|
|
2016-05-01 22:50:37 -07:00
|
|
|
@Component({selector: 'hello-world', template: 'hello world!!!'})
|
2016-04-28 17:50:03 -07:00
|
|
|
class HelloWorldComponent {
|
|
|
|
}
|
|
|
|
|
|
|
|
bootstrap(HelloWorldComponent);
|