blob: cc782f45ac99c052cac7e2079531e98010583e75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { Component, Input, OnInit } from '@angular/core';
import Predictor from 'src/app/_data/Predictor';
@Component({
selector: 'app-item-predictor',
templateUrl: './item-predictor.component.html',
styleUrls: ['./item-predictor.component.css']
})
export class ItemPredictorComponent implements OnInit {
@Input() predictor: Predictor = new Predictor();
constructor() { }
ngOnInit(): void {
}
}
|