aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/datatable/datatable.component.ts
blob: 19fb204e2051de6e3a9ef66f9ed89a3525966a97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { Component, Input, OnInit } from '@angular/core';

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

  @Input() hasHeader?: boolean = true;

  @Input() data?: any[] = [];

  hasInput = false;
  loaded = false;

  constructor() { }

  ngOnInit(): void {
  }

}