aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/item-predictor/item-predictor.component.ts
blob: d864480ad4ae483035f0e264fe1e5ca23d9d6dcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 {
  }

  openPredictor() {
    console.log("iskoristi")
    }

}