blob: c908663e9672d6189e3917efb96af45f9e5f260e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import {Component} from 'angular2/core';
@Component({
selector: 'my-app',
templateUrl: 'app/app.component.html',
styleUrls: [ 'app/app.component.css' ]
})
export class AppComponent {
title = "coucou";
}
|