tables.component.ts 220 Bytes
Newer Older
DESKTOP-HF0LVOG\myhr committed
1 2 3 4 5 6 7 8 9 10 11
import { Component, OnInit } from "@angular/core";

@Component({
  selector: "app-tables",
  templateUrl: "tables.component.html"
})
export class TablesComponent implements OnInit {
  constructor() {}

  ngOnInit() {}
}