aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/item-predictor/item-predictor.component.ts
blob: fe65ccfd7a85f048ed35aef1524f97a78b28755d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-item-predictor',
  templateUrl: './item-predictor.component.html',
  styleUrls: ['./item-predictor.component.css']
})
export class ItemPredictorComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}