aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/predict/predict.component.ts
blob: d5cb22bd2e1ae31fae7c4f400276930baa19f0a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Component, OnInit } from '@angular/core';
import Predictor from 'src/app/_data/Predictor';

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

  predictor:Predictor;
  constructor() {
    this.predictor = new Predictor();
   }

  ngOnInit(): void {
  }

}