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

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

  @Input() dataset: Dataset = new Dataset();
  
  isShowDiv = true;
  toggleDisplayDiv() {
    this.isShowDiv = !this.isShowDiv;
  }
  constructor() {
  }
  
}