in src/pages/summary/Summary.tsx [23:33]
public render(): JSX.Element {
const props = {
title: "Kubernetes summary UI Web App",
kubeService: this._pageDataService,
imageService: this._pageDataService,
clusterName: this.state.clusterName,
getContentReaderComponent: (props?: any) => <ContentReader {...props} />,
getImageLocation: DefaultImageLocation.getImageLocation
} as K8sSummary.IKubeSummaryProps;
return <K8sSummary.KubeSummary {...props} />;
}