constructor()

in src/components/StateButtons.js [36:48]


  constructor(props) {
    super(props);
    this.state = {
      downloadModal: false,
      uploadModal: false,
      configText: '',
    };

    this.toggleDownload = this.toggleDownload.bind(this);
    this.toggleUpload = this.toggleUpload.bind(this);
    this.uploadConfig = this.uploadConfig.bind(this);
    this.handleConfigText = this.handleConfigText.bind(this);
  }