11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
|
import {Component, Injectable} from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'hello-world-app',
|
||
|
template: '<div>Hello {{ name }}!</div>',
|
||
|
})
|
||
|
@Injectable()
|
||
|
export class HelloWorldComponent {
|
||
|
name: string = 'world';
|
||
|
}
|