mirror of
https://github.com/Dansen999/at-certification-stock.git
synced 2026-01-11 21:43:34 +00:00
Implemented features.
This commit is contained in:
25
src/app/components/sentinment/sentiment.component.ts
Normal file
25
src/app/components/sentinment/sentiment.component.ts
Normal 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 {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user