aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/item-model/item-model.component.ts
blob: 7f85f43fe91e9b9f97e082f8f3b98fea6cba5e11 (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 Model from 'src/app/_data/Model';

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

  @Input() model: Model = new Model();

  constructor() { }

  ngOnInit(): void {
  }

}