import "./cluster-settings.scss"; import React from "react"; import { observer } from "mobx-react"; import { Features } from "./features"; import { Removal } from "./removal"; import { Status } from "./status"; import { General } from "./general"; import { WizardLayout } from "../layout/wizard-layout"; import { ClusterIcon } from "../cluster-icon"; import { Icon } from "../icon"; import { getMatchedCluster } from "../cluster-manager/cluster-view.route"; import { navigate } from "../../navigation"; @observer export class ClusterSettings extends React.Component { render() { const cluster = getMatchedCluster(); if (!cluster) return null; const header = ( <>

{cluster.preferences.clusterName}

navigate("/")} big/> ); return (
); } }