import "./cluster-settings.scss"; import React from "react"; import { Link } from "react-router-dom"; 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"; @observer export class ClusterSettings extends React.Component { render() { const cluster = getMatchedCluster(); const header = ( <>

{cluster.preferences.clusterName}

); return (
); } }