Bernd-L/exDateMan

View on GitHub
frontend/src/app/components/inventory-card/inventory-card.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Component, OnInit, Input } from "@angular/core";
import { Inventory } from "../../models/inventory/inventory";

@Component({
  selector: "app-inventory-card",
  templateUrl: "./inventory-card.component.html",
  styleUrls: ["./inventory-card.component.scss"]
})
export class InventoryCardComponent implements OnInit {
  @Input()
  inventory: Inventory;

  constructor() {}
  ngOnInit() {}
}