ddcfe43b60461e50b4e4e8a0519a5281fc9ed23d
[examples/angular-tour-of-heroes] / src / app / vorgang / vorgang.component.ts
1 import { Component, OnInit } from '@angular/core';
2
3 @Component({
4   selector: 'app-vorgang',
5   templateUrl: './vorgang.component.html',
6   styleUrls: ['./vorgang.component.css']
7 })
8 export class VorgangComponent implements OnInit {
9
10   vorgang = "Hello world!";
11
12   constructor() { }
13
14   ngOnInit(): void {
15   }
16
17 }