hello.component.ts 228B

12345678910
  1. import { Component, Input } from '@angular/core';
  2. @Component({
  3. selector: 'hello',
  4. template: `<h1>Hello {{name}}!</h1>`,
  5. styles: [`h1 { font-family: Lato; }`]
  6. })
  7. export class HelloComponent {
  8. name: string = "couillu";
  9. }