Implemented features.

This commit is contained in:
Daniel Scheidle
2022-11-09 19:13:18 +01:00
parent 843def9ecd
commit 5f46bd167f
34 changed files with 460 additions and 104 deletions

View File

@@ -0,0 +1,25 @@
import {Component, Input, OnInit} from '@angular/core';
@Component({
selector: 'app-sentiment',
templateUrl: './sentiment.component.html',
styleUrls: ['./sentiment.component.css']
})
export class SentimentComponent implements OnInit {
@Input()
month!: number;
@Input()
change!: number;
@Input()
mspr!: number;
constructor() { }
ngOnInit(): void {
}
}