constructor()

in source/console/src/Components/Results/Results.js [12:23]


    constructor(props) {
        super(props);

        this.toggle = this.toggle.bind(this);
        this.toggleTab = this.toggleTab.bind(this);
        this.showResult = this.showResult.bind(this);
        this.caculateBandwidth = this.caculateBandwidth.bind(this);
        this.state = {
          info: false,
          activeTab: 'summary'
        };
      }