import "./cluster-manager.scss" import React from "react"; import { App } from "../app"; import { ClustersMenu } from "./clusters-menu"; import { BottomBar } from "./bottom-bar"; import { cssNames, IClassName } from "../../utils"; import { Terminal } from "../dock/terminal"; import { i18nStore } from "../../i18n"; import { themeStore } from "../../theme.store"; interface Props { className?: IClassName; contentClass?: IClassName; } export class ClusterManager extends React.Component { static async init() { await Promise.all([ i18nStore.init(), themeStore.init(), Terminal.preloadFonts(), ]) } render() { const { className, contentClass } = this.props; return (
) } }