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