2016-03-07 07:48:46 -06:00
|
|
|
import {Component} from 'angular2/core';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'my-app',
|
|
|
|
templateUrl: 'app/app.component.html',
|
|
|
|
styleUrls: [ 'app/app.component.css' ]
|
|
|
|
})
|
2016-03-07 11:01:56 -06:00
|
|
|
export class AppComponent {
|
|
|
|
title = "coucou";
|
|
|
|
}
|