1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/+workspaces/workspaces.tsx
Roman ba4f5cb47d workspaces: extract bottom-bar to separated component
Signed-off-by: Roman <ixrock@gmail.com>
2020-07-09 10:53:01 +03:00

20 lines
456 B
TypeScript

import "./workspaces.scss"
import React from "react";
import { ClustersMenu } from "./clusters-menu";
import { WorkspacesBottomBar } from "./bottom-bar";
// todo: support `workspaceId` in URL
export class Workspaces extends React.Component {
render() {
return (
<div className="Workspaces">
<div className="draggable-top"/>
<div id="lens-view"/>
<ClustersMenu/>
<WorkspacesBottomBar/>
</div>
)
}
}