mirror of
https://github.com/Dansen999/at-certification-stock.git
synced 2026-01-11 13:33:32 +00:00
26 lines
383 B
TypeScript
26 lines
383 B
TypeScript
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 {
|
|
|
|
}
|
|
}
|