import { Component } from '@angular/core'; | |
@Component({ | |
selector: 'mon-application', | |
template: '<h1>{{message}}</h1>', | |
}) | |
export class AppComponent { | |
message = 'Un component assez simple'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment