public constructor()

in src/pages/summary/Summary.tsx [17:21]


    public constructor(props: {}) {
        super(props);
        this.state = { clusterName: "" };
        fetch("/clusterName").then(res => res.json().then(val => this.setState({ clusterName: val.clusterName })));
    }