import React from "react"; import { Cluster } from "../../../main/cluster"; import { RemoveClusterButton } from "./components/remove-cluster-button"; interface Props { cluster: Cluster; } export class Removal extends React.Component { render() { const { cluster } = this.props; return (

Removal

); } }