constructor()

in DICOM-WSI/src/components/dicompathviewer.js [100:110]


  constructor(props) {
    super(props);

    this.onCheck = this.onCheck.bind(this);
    this.onExpand = this.onExpand.bind(this);

    this.state = {
       dataset: '',
       selectedDiseases: []
    };
  }