aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/my-models/my-models.component.ts
blob: e9bc52de137d7ae8d51e8cf419c4c5934b5bce7b (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-my-models',
  templateUrl: './my-models.component.html',
  styleUrls: ['./my-models.component.css']
})
export class MyModelsComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}